Baolina commited on
Commit
04edc92
·
verified ·
1 Parent(s): 0599c5c

Delete DockerFile

Browse files
Files changed (1) hide show
  1. DockerFile +0 -23
DockerFile DELETED
@@ -1,23 +0,0 @@
1
- %%writefile Dockerfile
2
-
3
- FROM python:3.9-slim
4
-
5
- WORKDIR /app
6
-
7
- RUN apt-get update && apt-get install -y \
8
- build-essential \
9
- curl \
10
- software-properties-common \
11
- git \
12
- && rm -rf /var/lib/apt/lists/*
13
-
14
- COPY requirements.txt ./
15
- COPY app.py ./
16
-
17
- RUN pip3 install -r requirements.txt
18
-
19
- EXPOSE 8501
20
-
21
- HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
22
-
23
- ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]