Update Dockerfiles to include libffi-dev dependency

This commit is contained in:
Théophile Diot 2024-03-17 17:41:09 +00:00
parent 372ae9056a
commit 526a122912
No known key found for this signature in database
GPG key ID: 248FEA4BAE400D06
3 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
FROM python:3.12.2-alpine3.19@sha256:1a0501213b470de000d8432b3caab9d8de5489e9443c2cc7ccaa6b0aa5c3148e as builder
# Install python dependencies
RUN apk add --no-cache build-base postgresql-dev
RUN apk add --no-cache build-base libffi-dev postgresql-dev
# Copy python requirements
COPY src/deps/requirements.txt /tmp/requirements-deps.txt

View file

@ -1,7 +1,7 @@
FROM python:3.12.2-alpine3.19@sha256:1a0501213b470de000d8432b3caab9d8de5489e9443c2cc7ccaa6b0aa5c3148e as builder
# Install python dependencies
RUN apk add --no-cache build-base postgresql-dev
RUN apk add --no-cache build-base libffi-dev postgresql-dev
# Copy python requirements
COPY src/deps/requirements.txt /tmp/requirements-deps.txt

View file

@ -1,7 +1,7 @@
FROM python:3.12.2-alpine3.19@sha256:1a0501213b470de000d8432b3caab9d8de5489e9443c2cc7ccaa6b0aa5c3148e as builder
# Install python dependencies
RUN apk add --no-cache build-base postgresql-dev
RUN apk add --no-cache build-base libffi-dev postgresql-dev
# Copy python requirements
COPY src/deps/requirements.txt /tmp/requirements-deps.txt