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 d09cbe0 commit a22890aCopy full SHA for a22890a
Dockerfile
@@ -49,6 +49,7 @@ RUN ls -l /code/static
49
50
# Copy Django project files
51
COPY ./Backend/EcommerceInventory /code/
52
+COPY ./Frontend/ /code/
53
54
# List contents (optional, for verification)
55
RUN ls -l /code
docker-compose.yml
@@ -5,7 +5,7 @@ services:
5
build:
6
context: .
7
dockerfile: Dockerfile # Adjust the path to your Dockerfile
8
- command: gunicorn Backend.EcommerceInventory.EcommerceInventory.wsgi:application --bind 0.0.0.0:80
+ command: gunicorn EcommerceInventory.wsgi:application --bind 0.0.0.0:80
9
ports:
10
- "80:80"
11
depends_on:
0 commit comments