razaali10 commited on
Commit
5255b7c
·
verified ·
1 Parent(s): 8a427e1

Delete Dockerfile.ui-only

Browse files
Files changed (1) hide show
  1. Dockerfile.ui-only +0 -11
Dockerfile.ui-only DELETED
@@ -1,11 +0,0 @@
1
- FROM python:3.11-slim
2
- WORKDIR /app
3
- COPY requirements.txt .
4
- RUN pip install --no-cache-dir -r requirements.txt
5
- COPY . .
6
- EXPOSE 7860
7
- ENV STREAMLIT_SERVER_PORT=7860 STREAMLIT_SERVER_ADDRESS=0.0.0.0 \
8
- STREAMLIT_BROWSER_GATHER_USAGE_STATS=false \
9
- STREAMLIT_SERVER_MAX_UPLOAD_SIZE=200
10
- CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0", \
11
- "--server.enableXsrfProtection=false", "--server.enableCORS=false"]