grame / Dockerfile
tiffank1802
SOLUTION: Replace Gradio with Streamlit
d0e4d91
raw
history blame contribute delete
229 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["streamlit", "run", "app.py", "--server.port=7860"]