diff options
| author | sickcodes <[email protected]> | 2021-03-06 19:25:26 +0000 |
|---|---|---|
| committer | sickcodes <[email protected]> | 2021-03-06 19:25:26 +0000 |
| commit | c2916fd48748ff15dbb8cb79cc9b5655e4d509eb (patch) | |
| tree | ac6c515e3a8af4763ef35547499ca6c9c4d8c8b4 | |
| parent | Fix BOOTDISK expected logic (diff) | |
| download | docker-osx-c2916fd48748ff15dbb8cb79cc9b5655e4d509eb.tar.xz docker-osx-c2916fd48748ff15dbb8cb79cc9b5655e4d509eb.zip | |
Dockerfile syntax error.
| -rw-r--r-- | Dockerfile | 2 | ||||
| -rw-r--r-- | Dockerfile.auto | 2 | ||||
| -rw-r--r-- | Dockerfile.naked | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -247,7 +247,7 @@ USER arch ENV USER arch -ENV BOOTDISK +ENV BOOTDISK= ENV DISPLAY=:0.0 diff --git a/Dockerfile.auto b/Dockerfile.auto index 3ea721d..a9cb6a5 100644 --- a/Dockerfile.auto +++ b/Dockerfile.auto @@ -129,7 +129,7 @@ RUN if [[ "${COMPLETE}" ]]; then \ && wget ${WGET_OPTIONS} -O /home/arch/OSX-KVM/mac_hdd_ng.img "${IMAGE_URL}" \ ; fi -ENV BOOTDISK +ENV BOOTDISK= ENV DISPLAY=:99 diff --git a/Dockerfile.naked b/Dockerfile.naked index f0d0075..44fa0e4 100644 --- a/Dockerfile.naked +++ b/Dockerfile.naked @@ -102,7 +102,7 @@ RUN mkdir -p ~/.ssh \ && tee -a ~/.ssh/config <<< ' StrictHostKeyChecking no' \ && tee -a ~/.ssh/config <<< ' UserKnownHostsFile=/dev/null' -ENV BOOTDISK +ENV BOOTDISK= ENV DISPLAY=:99 |