diff --git a/docker/qgisserver/Dockerfile b/docker/qgisserver/Dockerfile index 6513276f120..8b93dfa3300 100644 --- a/docker/qgisserver/Dockerfile +++ b/docker/qgisserver/Dockerfile @@ -2,6 +2,13 @@ ARG VERSION=latest FROM camptocamp/qgis-server:${VERSION} LABEL maintainer Camptocamp "info@camptocamp.com" +RUN \ + . /etc/os-release && \ + apt-get update && \ + apt-get install --assume-yes --no-install-recommends gcc && \ + apt-get clean && \ + rm --recursive --force /var/lib/apt/lists/* + COPY requirements.txt /tmp/ RUN python3 -m pip install --requirement /tmp/requirements.txt