From 47cb58c9b14eb90f837147b3e1b25e9810c7ed16 Mon Sep 17 00:00:00 2001 From: Tiara Rodney Date: Sat, 16 Apr 2022 22:48:00 +0200 Subject: [PATCH] fix(Dockerfile): add missing dependencies for PILLOW --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d64fa0e..ae4aa6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ WORKDIR /usr/local/src/httpaste COPY . . RUN apt-get update && \ - apt-get install -y libffi-dev gcc && \ + apt-get install -y libffi-dev gcc fontconfig && \ python3 -m pip install pipenv && \ python3 -m pipenv install --deploy --system --verbose && \ python3 setup.py install && \ @@ -27,4 +27,4 @@ FROM base as uwsgi ENTRYPOINT ["uwsgi", "--master", "--enable-threads", "--manage-script-name", "-w", "httpaste.wsgi:application"] -CMD ["-s", "/tmp/yourapplication.sock"] \ No newline at end of file +CMD ["-s", "/tmp/yourapplication.sock"]