Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -15,6 +15,8 @@ WORKDIR /app
|
|
| 15 |
|
| 16 |
COPY . .
|
| 17 |
|
|
|
|
| 18 |
EXPOSE 8080
|
| 19 |
|
|
|
|
| 20 |
CMD ["python", "app.py"]
|
|
|
|
| 15 |
|
| 16 |
COPY . .
|
| 17 |
|
| 18 |
+
# Expose the correct port
|
| 19 |
EXPOSE 8080
|
| 20 |
|
| 21 |
+
# Ensure that the app runs with the correct environment variables
|
| 22 |
CMD ["python", "app.py"]
|