GabrielGD's picture
Create Dockerfile
67bdc99 verified
Raw
History Blame Contribute Delete
237 Bytes
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"]