Ariyan-Pro's picture
FIX: Revert to FastAPI-only deployment (Streamlit timeout issue)
cff4cdb
raw
history blame contribute delete
192 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Expose port
EXPOSE 7860
# Run FastAPI
CMD ["python", "app.py"]