We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 666ae9d commit aa651e6Copy full SHA for aa651e6
Dockerfile
@@ -29,13 +29,13 @@ WORKDIR /code
29
30
# Copy backend requirements file
31
# COPY ./Backend/EcommerceInventory/requirements.txt /code/
32
-RUN pip install -r requirements.txt
33
34
# Copy built frontend to Django static files directory
35
# COPY --from=build-stage /app/frontend/build /code/static/
36
37
# Copy Django project files
38
COPY ./Backend/EcommerceInventory /code/Backend/EcommerceInventory/
+RUN pip install -r ./Backend/EcommerceInventory/requirements.txt
39
40
# Collect static files
41
RUN python ./Backend/EcommerceInventory/manage.py collectstatic --no-input
0 commit comments