fix(buildah): correct directory creation and reference

This commit is contained in:
yeti 2025-04-17 16:54:59 +01:00
parent 954cee98db
commit 30c4d9b7a8

View File

@ -17,13 +17,13 @@ buildah run "$ctr" -- bash -c "\
useradd -ms /bin/zsh $DEV_USER && \
useradd --system --no-create-home --shell /usr/sbin/nologin viewer && \
usermod -aG $DEV_USER viewer && mkdir -p /tmp/tmux-shared && \
mkdir -p $DEV_HOME/.gnupg
mkdir -p $DEV_HOME/.gnupg && mkdir -p $SECURE
"
# copy start script
buildah copy "$ctr" start.sh /start.sh
# copy ssh setup
buildah copy "$ctr" ssh /"$SECURE"/ssh
buildah copy "$ctr" ssh "$SECURE"/ssh
# copy zshrc, neovim and tmux setup
buildah copy "$ctr" zshrc $DEV_HOME/.zshrc