Fix CFFI installation on Raspberry PI

This commit is contained in:
Bruno Alla 2023-05-02 19:17:53 +01:00
parent 43efe9a7ef
commit 0c338796dc
No known key found for this signature in database
2 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,8 @@ ARG BUILD_ENVIRONMENT=local
RUN apt-get update && apt-get install --no-install-recommends -y \
# dependencies for building Python packages
build-essential \
# needed to build cffi on some architectures
libffi-dev \
# psycopg2 dependencies
libpq-dev

View File

@ -36,6 +36,8 @@ ARG BUILD_ENVIRONMENT=production
RUN apt-get update && apt-get install --no-install-recommends -y \
# dependencies for building Python packages
build-essential \
# needed to build cffi on some architectures
libffi-dev \
# psycopg2 dependencies
libpq-dev