diff options
| author | Marat Radchenko <[email protected]> | 2024-08-28 18:37:42 +0300 |
|---|---|---|
| committer | Marat Radchenko <[email protected]> | 2024-08-28 18:37:51 +0300 |
| commit | d13bae59e4608f9262ea2f99aa7bcfaefc14829c (patch) | |
| tree | 3f5457660fbc9fdfb1a5e2981b67086ed39f96a4 /Dockerfile | |
| parent | Merge pull request #742 from Anthropohedron/faq (diff) | |
| download | docker-osx-d13bae59e4608f9262ea2f99aa7bcfaefc14829c.tar.xz docker-osx-d13bae59e4608f9262ea2f99aa7bcfaefc14829c.zip | |
Fix LegacyKeyValueFormat Docker warning
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]>
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |