Spaces:
Runtime error
Runtime error
File size: 237 Bytes
67bdc99 | 1 2 3 4 5 6 7 8 9 | 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"] |