Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
|
@@ -10,7 +10,8 @@ COPY . .
|
|
| 10 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 11 |
|
| 12 |
# Expose the Streamlit port
|
| 13 |
-
EXPOSE
|
| 14 |
|
| 15 |
# Run the Streamlit app
|
| 16 |
-
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
|
|
|
|
|
|
| 10 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 11 |
|
| 12 |
# Expose the Streamlit port
|
| 13 |
+
# EXPOSE 7860
|
| 14 |
|
| 15 |
# Run the Streamlit app
|
| 16 |
+
# CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
|
| 17 |
+
CMD ["streamlit", "run", "app.py"]
|