Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -10,8 +10,8 @@ RUN pip install --no-cache-dir flask gunicorn
|
|
| 10 |
# Copy the current directory contents into the container at /app
|
| 11 |
COPY . /app
|
| 12 |
|
| 13 |
-
# Make port
|
| 14 |
-
EXPOSE
|
| 15 |
|
| 16 |
# Define environment variable
|
| 17 |
ENV FLASK_APP=app.py
|
|
|
|
| 10 |
# Copy the current directory contents into the container at /app
|
| 11 |
COPY . /app
|
| 12 |
|
| 13 |
+
# Make port 7860 available to the world outside this container
|
| 14 |
+
EXPOSE 7860
|
| 15 |
|
| 16 |
# Define environment variable
|
| 17 |
ENV FLASK_APP=app.py
|