MohammedSohail's picture
Add/update Dockerfile
995f473 verified
raw
history blame contribute delete
349 Bytes
# 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"]