diff options
| author | sickcodes <[email protected]> | 2021-01-24 13:06:37 +0000 |
|---|---|---|
| committer | sickcodes <[email protected]> | 2021-01-24 13:06:37 +0000 |
| commit | 6c8fdea032b618e6e98a4b22bead4b0caeac7cff (patch) | |
| tree | 80a2f1d124d7353c7aeea6b495711fcad483e4d3 | |
| parent | [V3.0] Dockerfile, Dockerfile.auto, Dockerfile.naked (diff) | |
| download | docker-osx-6c8fdea032b618e6e98a4b22bead4b0caeac7cff.tar.xz docker-osx-6c8fdea032b618e6e98a4b22bead4b0caeac7cff.zip | |
Bug in ARG for Original Dockerfile
| -rw-r--r-- | Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -56,8 +56,8 @@ MAINTAINER 'https://sick.codes' <https://sick.codes> SHELL ["/bin/bash", "-c"] # change disk size here or add during build, e.g. --build-arg VERSION=10.14.5 --build-arg SIZE=50G -ARG SIZE 200G -ARG VERSION 10.15.6 +ARG SIZE=200G +ARG VERSION=10.15.6 # OPTIONAL: Arch Linux server mirrors for super fast builds # set RANKMIRRORS to any value other that nothing, e.g. -e RANKMIRRORS=true @@ -189,7 +189,7 @@ RUN grep -v InstallMedia ./Launch.sh > ./Launch-nopicker.sh \ ENV USER arch -ENV DISPLAY :0.0 +ENV DISPLAY=:0.0 USER arch |