Spaces:
Sleeping
Sleeping
File size: 356 Bytes
39bf6ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
FROM python:3.12-slim
WORKDIR /app
# Copy requirements
COPY frontend/requirements.txt .
# Install dependencies using uv
RUN pip install uv && uv pip install --system -r requirements.txt
# Copy frontend code
COPY frontend ./
# Expose port
EXPOSE 8501
# Run frontend
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
|