Skip to content

Commit a22890a

Browse files
committed
Deploy CI CD on Test Server
1 parent d09cbe0 commit a22890a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ RUN ls -l /code/static
4949

5050
# Copy Django project files
5151
COPY ./Backend/EcommerceInventory /code/
52+
COPY ./Frontend/ /code/
5253

5354
# List contents (optional, for verification)
5455
RUN ls -l /code

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
build:
66
context: .
77
dockerfile: Dockerfile # Adjust the path to your Dockerfile
8-
command: gunicorn Backend.EcommerceInventory.EcommerceInventory.wsgi:application --bind 0.0.0.0:80
8+
command: gunicorn EcommerceInventory.wsgi:application --bind 0.0.0.0:80
99
ports:
1010
- "80:80"
1111
depends_on:

0 commit comments

Comments
 (0)