Skip to content

Commit a9f0337

Browse files
committed
without copying certificates into dockerfile
1 parent 3e32dff commit a9f0337

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Dockerfile

+1-4
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ WORKDIR /src
77
COPY src/ ./
88
COPY requirements.txt .
99

10-
# Copy certificates
11-
COPY certs/ /certs/
12-
1310
# Copy the data directory into the container at the correct path
1411
COPY data/ /data/
1512

@@ -26,4 +23,4 @@ ENV NAME World
2623
LABEL version="0.1.0"
2724

2825
# Command to run the application using Gunicorn
29-
CMD ["gunicorn", "--workers=3", "--bind=0.0.0.0:5000", "app:app", "--certfile=/certs/cert.pem", "--keyfile=/certs/key.pem"]
26+
CMD ["gunicorn", "--workers=3", "--bind=0.0.0.0:5000", "app:app"]

0 commit comments

Comments
 (0)