hblim's picture
Clean codebase for HF Space (drop Prometheus binary data)
a6576f0
raw
history blame contribute delete
416 Bytes
# Use the official lightweight Python image
FROM python:3.12-slim
# Set working directory
WORKDIR /app
# Copy and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy your Streamlit app
COPY . .
# Expose Streamlit’s default port
EXPOSE 8502
# Launch the app
ENTRYPOINT ["streamlit", "run", "frontend/app.py", "--server.port=8502", "--server.address=0.0.0.0"]