Fix error building dev project

This commit is contained in:
Benjamin Bach 2024-08-08 00:34:52 +02:00
parent 93e8028413
commit 15e422175b
No known key found for this signature in database
GPG key ID: 486F0D69C845416E

View file

@ -21,7 +21,8 @@ WORKDIR /app
RUN groupadd -g 1000 www && useradd -u 1000 -ms /bin/bash -g www www RUN groupadd -g 1000 www && useradd -u 1000 -ms /bin/bash -g www www
# Only copy the requirements file first to leverage Docker cache # Only copy the requirements file first to leverage Docker cache
COPY $REQUIREMENTS_FILE . RUN mkdir requirements/
COPY $REQUIREMENTS_FILE $REQUIREMENTS_FILE
RUN mkdir -p /app/src/static && \ RUN mkdir -p /app/src/static && \
chown www:www /app/src/static && \ chown www:www /app/src/static && \