File size: 349 Bytes
995f473 3036b0f 995f473 3036b0f 995f473 3036b0f 995f473 3036b0f 995f473 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Dockerfile
FROM python:3.10-slim
WORKDIR /app
# Copy all files (Space will build from repo) - minimal
COPY . /app
# Install deps
RUN pip install --no-cache-dir -r requirements.txt
# Expose standard Streamlit port
EXPOSE 7860
# Start Streamlit app
CMD ["streamlit", "run", "streamlit_app.py", "--server.port=7860", "--server.address=0.0.0.0"]
|