ktejeshnaidu commited on
Commit
33f3b44
·
verified ·
1 Parent(s): b0c3270

Delete Dockerfile.frontend

Browse files
Files changed (1) hide show
  1. Dockerfile.frontend +0 -18
Dockerfile.frontend DELETED
@@ -1,18 +0,0 @@
1
- FROM python:3.12-slim
2
-
3
-
4
- WORKDIR /app
5
-
6
- # Install system dependencies
7
- RUN apt-get update && apt-get install -y gcc g++ libc-dev
8
-
9
- COPY requirements.txt .
10
- RUN pip install --no-cache-dir --default-timeout=1000 -r requirements.txt
11
-
12
- COPY . .
13
-
14
- # Expose Streamlit port
15
- EXPOSE 8501
16
-
17
- # Run the Streamlit app
18
- CMD ["streamlit", "run", "frontend/app.py", "--server.port=8501", "--server.address=0.0.0.0"]