Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -5,9 +5,9 @@
|
|
| 5 |
# EXPOSE 8501
|
| 6 |
# CMD streamlit run app.py --server.port 7850
|
| 7 |
|
| 8 |
-
FROM python:3.
|
| 9 |
COPY . /app
|
| 10 |
WORKDIR /app
|
| 11 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 12 |
EXPOSE 8501
|
| 13 |
-
CMD streamlit run app.py --server.port
|
|
|
|
| 5 |
# EXPOSE 8501
|
| 6 |
# CMD streamlit run app.py --server.port 7850
|
| 7 |
|
| 8 |
+
FROM python:3.11
|
| 9 |
COPY . /app
|
| 10 |
WORKDIR /app
|
| 11 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 12 |
EXPOSE 8501
|
| 13 |
+
CMD streamlit run app.py --server.port 7802
|