PARTHA181098 commited on
Commit
5433738
·
verified ·
1 Parent(s): 6095328

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -29
Dockerfile DELETED
@@ -1,29 +0,0 @@
1
- # -------- Base image --------
2
- FROM python:3.11-slim
3
-
4
- # -------- System deps --------
5
- RUN apt-get update && apt-get install -y \
6
- build-essential \
7
- && rm -rf /var/lib/apt/lists/*
8
-
9
- # -------- Working dir --------
10
- WORKDIR /app
11
-
12
- # -------- Copy dependencies --------
13
- COPY requirements.txt .
14
-
15
- RUN pip install --no-cache-dir -r requirements.txt
16
-
17
- # -------- Copy project code --------
18
- COPY . .
19
-
20
- # -------- Streamlit settings --------
21
- ENV STREAMLIT_SERVER_PORT=8501
22
- ENV STREAMLIT_SERVER_ADDRESS=0.0.0.0
23
- ENV PYTHONUNBUFFERED=1
24
-
25
- # -------- Expose port --------
26
- EXPOSE 8501
27
-
28
- # -------- Run app --------
29
- CMD ["streamlit", "run", "main.py"]