Spaces:
Runtime error
Runtime error
| FROM python:3.9-slim | |
| RUN apt-get update && apt-get install -y \ | |
| libpango-1.0-0 \ | |
| libpangoft2-1.0-0 \ | |
| && rm -rf /var/lib/apt/lists/* | |
| COPY requirements.txt . | |
| RUN pip install -r requirements.txt | |
| COPY . . | |
| CMD ["python", "app.py"] |