Spaces:
Runtime error
Runtime error
| FROM python:3.10-slim | |
| WORKDIR /app | |
| # Install requirements | |
| RUN pip install --no-cache-dir gradio | |
| # Copy app | |
| COPY app.py . | |
| EXPOSE 7860 | |
| CMD ["python", "app.py"] | |
| FROM python:3.10-slim | |
| WORKDIR /app | |
| # Install requirements | |
| RUN pip install --no-cache-dir gradio | |
| # Copy app | |
| COPY app.py . | |
| EXPOSE 7860 | |
| CMD ["python", "app.py"] | |