# Use official Python image | |
FROM python:3.9-slim | |
# Set working directory | |
WORKDIR /app | |
# Install system dependencies | |
RUN apt-get update && apt-get install -y \ | |
build-essential \ | |
&& rm -rf /var/lib/apt/lists/* | |
# Copy project files into the container | |
COPY . /app | |
# Install Python dependencies | |
RUN pip install --no-cache-dir -r requirements.txt | |
# Expose the port Streamlit uses | |
EXPOSE 7860 | |
# Set the Streamlit app to run | |
ENV STREAMLIT_PORT=7860 | |
ENV STREAMLIT_BROWSER_GATHER_USAGE_STATS=false | |
# Run Streamlit | |
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"] | |