Edge / Dockerfile
4waiz's picture
Update Dockerfile
cfcebe2 verified
raw
history blame contribute delete
351 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Streamlit config for Spaces
ENV STREAMLIT_SERVER_PORT=7860 \
STREAMLIT_SERVER_ADDRESS=0.0.0.0 \
STREAMLIT_SERVER_HEADLESS=true \
STREAMLIT_BROWSER_GATHERUSAGESTATS=false
EXPOSE 7860
CMD ["streamlit","run","app.py"]