From 10030e9a9649432ffb40ecaebda82b7655d05507 Mon Sep 17 00:00:00 2001 From: Bernhard Mallinger Date: Mon, 7 Dec 2020 10:28:54 +0100 Subject: [PATCH] Add missing build dependencies libpython3-dev and libgdal-dev I'm not sure why these are required now, apparently some update changed some dependencies. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1c6486d..965c3a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -62,7 +62,7 @@ ARG ADD_PIP_PACKAGES="" # ENV settings ENV TZ=${TIMEZONE} \ DEBIAN_FRONTEND="noninteractive" \ - DEB_BUILD_DEPS="tzdata build-essential python3-pip apt-utils curl git unzip" \ + DEB_BUILD_DEPS="tzdata build-essential libpython3-dev libgdal-dev python3-pip apt-utils curl git unzip" \ DEB_PACKAGES="locales libgdal27 python3-distutils python3-gdal libsqlite3-mod-spatialite ${ADD_DEB_PACKAGES}" \ PIP_PACKAGES="setuptools==49.3.1 greenlet==0.4.16 gunicorn==20.0.4 gevent==1.5.0 wheel==0.33.4 ${ADD_PIP_PACKAGES}"