dpratapx's picture
Add Streamlit admin dashboard and normalize database with restaurants table
93c5df6
Raw
History Blame Contribute Delete
289 Bytes
FROM python:3.11-slim
WORKDIR /app
# Copy project files
COPY pyproject.toml .
COPY main.py .
# Install dependencies
RUN pip install --no-cache-dir -e .
# Expose port 7860 (HF Spaces default)
EXPOSE 7860
# Run the app
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]