diff --git a/pkg/docker/Dockerfile b/pkg/docker/Dockerfile index 577d8a06e..80ceeb043 100644 --- a/pkg/docker/Dockerfile +++ b/pkg/docker/Dockerfile @@ -45,7 +45,7 @@ ENV PYTHONPATH=/pgadmin4 # so that deps do not increase the size of resulting image by remaining in layers COPY ./pgadmin4/requirements.txt /pgadmin4 RUN set -ex && \ - apk add --no-cache --virtual build-deps build-base postgresql-dev && \ + apk add --no-cache --virtual build-deps build-base postgresql-dev libffi-devel && \ pip install --no-cache-dir -r requirements.txt && \ apk del --no-cache build-deps