Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -24,7 +24,7 @@ RUN chmod -R 755 /app/uploads /app/images
|
|
| 24 |
# Copy the rest of the application code into the container
|
| 25 |
COPY . .
|
| 26 |
|
| 27 |
-
EXPOSE
|
| 28 |
|
| 29 |
# Specify the command to run on container start
|
| 30 |
-
CMD ["gunicorn", "--bind", "0.0.0.0:
|
|
|
|
| 24 |
# Copy the rest of the application code into the container
|
| 25 |
COPY . .
|
| 26 |
|
| 27 |
+
EXPOSE 7860
|
| 28 |
|
| 29 |
# Specify the command to run on container start
|
| 30 |
+
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]
|