Add Pillow system dependencies to Dockerfiles

This commit is contained in:
Bruno Alla 2023-06-27 17:09:14 +01:00
parent 356ac91cb9
commit 6f6a1c77d1
No known key found for this signature in database
2 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,8 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
build-essential \
# needed to build cffi on some architectures
libffi-dev \
# needed to build Pillow on some architectures
zlib1g-dev \
# psycopg2 dependencies
libpq-dev

View File

@ -38,6 +38,8 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
build-essential \
# needed to build cffi on some architectures
libffi-dev \
# needed to build Pillow on some architectures
zlib1g-dev \
# psycopg2 dependencies
libpq-dev