From 67211830fb22a2efe6c765f0e03e03e098fbcdbe Mon Sep 17 00:00:00 2001 From: Guillaume HUSTA Date: Sun, 11 Aug 2024 16:50:41 +0200 Subject: [PATCH] fix(dockerfile): LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6e11fd4..ffbd995 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,9 @@ ARG POSTGRES_TAG=16.4 FROM postgres:$POSTGRES_TAG -ENV POSTGRES_USER world -ENV POSTGRES_PASSWORD world123 -ENV POSTGRES_DB world-db +ENV POSTGRES_USER=world +ENV POSTGRES_PASSWORD=world123 +ENV POSTGRES_DB=world-db # Copier les scripts SQL dans : ADD scripts/*.sql /docker-entrypoint-initdb.d/