From e2ee2f5949066a02484344490db2c6e50ca02825 Mon Sep 17 00:00:00 2001 From: Angelos Tzotsos Date: Thu, 24 Dec 2020 14:04:47 +0200 Subject: [PATCH] Switch docker image to ubuntu focal with ubuntugis-unstable --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5207ae4..e2b2423 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ # # ================================================================= -FROM debian:bullseye-slim +FROM ubuntu:focal LABEL maintainer="Just van den Broecke " @@ -74,7 +74,9 @@ ADD pygeoapi/__init__.py /pygeoapi/pygeoapi/ # Run all installs RUN \ # Install dependencies - apt-get update \ + apt-get update -y \ + && apt-get install -y --fix-missing --no-install-recommends software-properties-common \ + && add-apt-repository ppa:ubuntugis/ubuntugis-unstable \ && apt-get --no-install-recommends install -y ${DEB_BUILD_DEPS} ${DEB_PACKAGES} \ # Timezone && cp /usr/share/zoneinfo/${TZ} /etc/localtime\