Spaces:
Sleeping
Sleeping
Delete Dockerfile
Browse files- Dockerfile +0 -14
Dockerfile
DELETED
|
@@ -1,14 +0,0 @@
|
|
| 1 |
-
FROM python:3.9-slim
|
| 2 |
-
|
| 3 |
-
WORKDIR /home/user/app
|
| 4 |
-
COPY . .
|
| 5 |
-
|
| 6 |
-
RUN apt-get update && apt-get install -y build-essential curl git && rm -rf /var/lib/apt/lists/*
|
| 7 |
-
|
| 8 |
-
RUN pip install --no-cache-dir streamlit pandas matplotlib seaborn scipy numpy
|
| 9 |
-
|
| 10 |
-
EXPOSE 8501
|
| 11 |
-
|
| 12 |
-
HEALTHCHECK --interval=30s --timeout=3s --start-period=60s --retries=3 CMD curl --fail http://localhost:8501/_stcore/health || exit 1
|
| 13 |
-
|
| 14 |
-
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0", "--server.enableCORS=false", "--server.enableXsrfProtection=false"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|