diff --git a/Dockerfile b/Dockerfile index 3105d82e52b5b9763877ee2bccfd95f97ef656e9..eea6e89692cd047246dbc43f09d7117bb6b62059 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ -from python:3.11.4-alpine3.18@sha256:0a56f24afa1fc7f518aa690cb8c7be661225e40b157d9bb8c6ef402164d9faa7 +FROM python:3.11.4-alpine3.18@sha256:0a56f24afa1fc7f518aa690cb8c7be661225e40b157d9bb8c6ef402164d9faa7 COPY ./requirements.txt /app/requirements.txt -RUN pip install --no-cache-dir -r /app/requirements.txt +RUN pip install --no-cache-dir -r /app/requirements.txt && \ + apk add --no-cache --virtual font-dejavu && \ COPY ./main.py /app/main.py WORKDIR /app CMD ["python", "main.py"] \ No newline at end of file