add missing libffi-dev dep in Dockerfile

This commit is contained in:
nobohan 2022-04-01 14:52:37 +02:00
parent 99fdc574ce
commit 44c937275a
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ FROM debian:buster-slim
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y sudo vim nano locales unzip && \
apt-get install -y python-dev python-pip libpq-dev libgeos-dev python3 python3-pip unzip && \
apt-get install -y python-dev python-pip libpq-dev libgeos-dev python3 python3-pip unzip libffi-dev && \
apt-get install -y python3-venv git npm wget postgresql-client && \
localedef -i fr_FR -c -f UTF-8 -A /usr/share/locale/locale.alias fr_FR.UTF-8 && \
apt-get clean