From 24ec39ffd41241aaf0c0f056b158649518389955 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Thu, 5 Sep 2024 08:36:33 +0200 Subject: [PATCH] fix(scripts/Dockerfile): Avoid legacy key-value format Fix the following warning when building the docker image: > 1 warning found (use docker --debug to expand): > - LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 10) --- scripts/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Dockerfile b/scripts/Dockerfile index e8a52466a6e369..93f152bd92a91e 100644 --- a/scripts/Dockerfile +++ b/scripts/Dockerfile @@ -7,7 +7,7 @@ FROM ubuntu:22.04 # Fix locale to avoid warnings: -ENV LANG en_US.UTF-8 +ENV LANG=en_US.UTF-8 # Needed for setup: COPY ./llvm-snapshot.gpg.key ./openjdk-r-ppa.gpg ./properties.sh ./setup-android-sdk.sh ./setup-cgct.sh ./setup-ubuntu.sh /tmp/