aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
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 /Dockerfile
parentAdd ventura to Docker-OSX README (diff)
downloaddocker-osx-ventura.tar.xz
docker-osx-ventura.zip
Add mkdir -p, add ventura elsewhereventura
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 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 \