ssahal commited on
Commit
3cd65bb
·
verified ·
1 Parent(s): 84b70c7

Delete Dockerfile

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