From 07a217116881e6b2486ab83158491b37a6f6dc5e Mon Sep 17 00:00:00 2001 From: "Peter A. Jonsson" Date: Fri, 26 Jul 2024 00:21:47 +0200 Subject: [PATCH] Dockerfile: fixate GDAL version Building from gdal-latest will make the explorer 2.12.3 image unbuildable when gdal-latest suddenly contains breaking changes. Fixate the image version to keep old releases of explorer buildable even in the future. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b1785c3cb..f62a543a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/osgeo/gdal:ubuntu-small-latest as builder +FROM ghcr.io/osgeo/gdal:ubuntu-small-3.9.1 AS builder ENV DEBIAN_FRONTEND=noninteractive \ LC_ALL=C.UTF-8 \ @@ -20,7 +20,7 @@ WORKDIR /build RUN python3 -m pip --disable-pip-version-check -q wheel --no-binary psycopg2 psycopg2 -FROM ghcr.io/osgeo/gdal:ubuntu-small-latest +FROM ghcr.io/osgeo/gdal:ubuntu-small-3.9.1 ENV DEBIAN_FRONTEND=noninteractive \ LC_ALL=C.UTF-8 \