diff options
| author | sickcodes <[email protected]> | 2021-01-24 16:27:17 +0000 |
|---|---|---|
| committer | sickcodes <[email protected]> | 2021-01-24 16:27:17 +0000 |
| commit | ef3ba4ef33fd214774ee2cdadb89ba1b94bdf970 (patch) | |
| tree | a35ef0733f5af1af5def7fa61c490601e3719c47 | |
| parent | Bug in ARG for Original Dockerfile (diff) | |
| download | docker-osx-ef3ba4ef33fd214774ee2cdadb89ba1b94bdf970.tar.xz docker-osx-ef3ba4ef33fd214774ee2cdadb89ba1b94bdf970.zip | |
Forgot COMPLETE=true for large disk in Dockerfile.auto
| -rw-r--r-- | Dockerfile.auto | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile.auto b/Dockerfile.auto index bcc63d7..10a9af0 100644 --- a/Dockerfile.auto +++ b/Dockerfile.auto @@ -63,7 +63,7 @@ RUN if [[ "${RANKMIRRORS}" ]]; then { pacman -Sy wget --noconfirm || pacman -Syu && tee -a /etc/pacman.d/mirrorlist <<< 'Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch' \ && cat /etc/pacman.d/mirrorlist ; fi -RUN pacman -Syu xorg-server-xvfb xterm xorg-xhost xorg-xrandr xdotool sshpass scrot base-devel --noconfirm +RUN pacman -Syu xorg-server-xvfb wget xterm xorg-xhost xorg-xrandr xdotool sshpass scrot base-devel --noconfirm RUN git clone https://github.com/stolk/imcat.git \ && cd imcat \ @@ -87,7 +87,7 @@ RUN mkdir -p ~/.ssh \ WORKDIR /home/arch/OSX-KVM -ARG COMPLETE +ARG COMPLETE=true # Feel free to take a copy of this image and then host it internally ARG IMAGE_URL='https://images2.sick.codes/mac_hdd_ng_auto.img' |