From 3d752ef438b285502f10533c48805cc89e0b8823 Mon Sep 17 00:00:00 2001 From: OneShepherdBoy Date: Sun, 8 Sep 2024 18:19:40 +0900 Subject: [PATCH] Fix LegacyKeyValueFormat warning The old way of declaring environment variables is now flagged as a warning "LegacyKeyValueFormat". The update change the declaration of two environment variables based on the official documentation : https://docs.docker.com/reference/build-checks/legacy-key-value-format/ . --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e004d6e..310e5f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,8 @@ LABEL "rating"="Five Stars" "class"="First Class" USER root -ENV AP /data/app -ENV SCPATH /etc/supervisor/conf.d +ENV AP=/data/app +ENV SCPATH=/etc/supervisor/conf.d RUN apt-get -y update