From eb15452d7eedf680f01561975a149021b0826069 Mon Sep 17 00:00:00 2001 From: Harvester57 Date: Sat, 30 Aug 2025 15:06:27 +0200 Subject: [PATCH] Use modern ENV notation --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a315bf6..6e733a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:24.04@sha256:7c06e91f61fa88c08cc74f7e1b7c69ae24910d745357e0dfe1d2c0322aaf20f9 AS compiler-common ENV DEBIAN_FRONTEND=noninteractive -ENV LANG C.UTF-8 -ENV LC_ALL C.UTF-8 +ENV LANG=C.UTF-8 +ENV LC_ALL=C.UTF-8 SHELL ["/bin/bash", "-o", "pipefail", "-c"] RUN apt-get update \ @@ -49,7 +49,7 @@ ENV AUTOVACUUM=on ENV UPDATES=disabled ENV REPLICATION_URL=https://planet.openstreetmap.org/replication/hour/ ENV MAX_INTERVAL_SECONDS=3600 -ENV PG_VERSION 17 +ENV PG_VERSION=17 RUN ln -snf "/usr/share/zoneinfo/$TZ" /etc/localtime && echo "$TZ" > /etc/timezone