aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsickcodes <[email protected]>2022-11-15 19:17:58 +0000
committersickcodes <[email protected]>2022-11-15 19:17:58 +0000
commite5ca81ee6e6a711b3e0be7d6d843d92379fbe44e (patch)
tree592fe3f23e27bdf5ecd6942ed237a99711deaa5c
parentAdd ventura to Docker-OSX README (diff)
downloaddocker-osx-ventura.tar.xz
docker-osx-ventura.zip
Add mkdir -p, add ventura elsewhereventura
-rw-r--r--Dockerfile4
-rw-r--r--tests/boot-images.sh2
2 files changed, 4 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 330980f..5327998 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -99,11 +99,11 @@ RUN pacman -Syu git zip vim nano alsa-utils openssh --noconfirm \
&& ln -s /bin/vim /bin/vi \
&& useradd arch -p arch \
&& tee -a /etc/sudoers <<< 'arch ALL=(ALL) NOPASSWD: ALL' \
- && mkdir /home/arch \
+ && mkdir -p /home/arch \
&& chown arch:arch /home/arch
# allow ssh to container
-RUN mkdir -m 700 /root/.ssh
+RUN mkdir -p -m 700 /root/.ssh
WORKDIR /root/.ssh
RUN touch authorized_keys \
diff --git a/tests/boot-images.sh b/tests/boot-images.sh
index 6b914b9..4cfed86 100644
--- a/tests/boot-images.sh
+++ b/tests/boot-images.sh
@@ -16,6 +16,7 @@
# scrot -o catalina_master.png
# scrot -o big-sur_master.png
# scrot -o monterey_master.png
+# scrot -o ventura_master.png
# pull off remote server to the tests folder
# REMOTE_SERVER=
# scp root@"${REMOTE_SERVER}":~/*_master.png .
@@ -28,6 +29,7 @@ TESTS=(
catalina
big-sur
monterey
+ ventura
)
# test each docker image to see if they boot to their unique respective installation screens.