aadii14 commited on
Commit
f4bbbe8
·
verified ·
1 Parent(s): 5f9dec3

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. 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"]