# Use the Hugging Face Spaces base image FROM huggingface/platform:latest # Set the working directory inside the container WORKDIR /app # Copy all project files into the container COPY . /app # Install Python dependencies RUN pip install --no-cache-dir -r requirements.txt # Expose the Streamlit default port EXPOSE 8501 # Run the Streamlit app CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]