Skip to content

Commit

Permalink
fix(scripts/Dockerfile): Avoid legacy key-value format
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
fornwall committed Sep 5, 2024
1 parent 981658d commit 24ec39f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down

0 comments on commit 24ec39f

Please sign in to comment.