Skip to content

Commit

Permalink
Fix LegacyKeyValueFormat Docker warning
Browse files Browse the repository at this point in the history
When doing `docker build`, docker (tested with 27.0.3) prints a warning:

    LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 238)

This commit fixes it by using proper syntax.

Signed-off-by: Marat Radchenko <[email protected]>
  • Loading branch information
slonopotamus committed Aug 28, 2024
1 parent 9a229b8 commit d13bae5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ RUN grep -v InstallMedia ./Launch.sh > ./Launch-nopicker.sh \

USER arch

ENV USER arch
ENV USER=arch

# These are hardcoded serials for non-iMessage related research
# Overwritten by using GENERATE_UNIQUE=true
Expand Down

0 comments on commit d13bae5

Please sign in to comment.