File size: 219 Bytes
3c13f2c 6e07a53 3c13f2c 6e07a53 3c13f2c 6e07a53 3c13f2c 6e07a53 3c13f2c 6e07a53 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM python:3.10-slim
WORKDIR /app
# Install pip dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app code
COPY . .
# Launch Gradio on HF Space
CMD ["python", "app.py"]
|