From d94a133384eb7a805ad7185195db96435d2ecdac Mon Sep 17 00:00:00 2001 From: Am K <20879950+guangrei@users.noreply.github.com> Date: Fri, 28 Feb 2025 22:53:42 +0700 Subject: [PATCH] Fix 5 warnings found (use docker --debug to expand) (#519) This PR can fix: 5 warnings found (use docker --debug to expand): - LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 23) - LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 24) - LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 25) - LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 26) - LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 27) --- docker/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 901aeb5..ba1c6f9 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -20,8 +20,8 @@ RUN case `dpkg --print-architecture` in \ esac && \ rm wasi-sdk-*.deb -ENV CC /opt/wasi-sdk/bin/clang -ENV CXX /opt/wasi-sdk/bin/clang++ -ENV LD /opt/wasi-sdk/bin/wasm-ld -ENV AR /opt/wasi-sdk/bin/llvm-ar -ENV RANLIB /opt/wasi-sdk/bin/llvm-ranlib +ENV CC="/opt/wasi-sdk/bin/clang" +ENV CXX="/opt/wasi-sdk/bin/clang++" +ENV LD="/opt/wasi-sdk/bin/wasm-ld" +ENV AR="/opt/wasi-sdk/bin/llvm-ar" +ENV RANLIB="/opt/wasi-sdk/bin/llvm-ranlib"