From e9303e2a98f315e9ecc58c47b94d58406faed4e9 Mon Sep 17 00:00:00 2001 From: yeti Date: Thu, 24 Apr 2025 20:47:03 +0100 Subject: [PATCH] feat(buildah): adopt copy statements to new local file structure --- build-workspace.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/build-workspace.sh b/build-workspace.sh index 3da21cd..390c008 100755 --- a/build-workspace.sh +++ b/build-workspace.sh @@ -20,13 +20,9 @@ buildah run "$ctr" -- bash -c "\ mkdir -p $SECURE && chmod -R 500 $SECURE && \ mkdir /app && chmod 700 /app && chown $DEV_USER:$DEV_USER /app " -# copy start script -buildah copy "$ctr" start.sh $DEV_HOME/start.sh -# copy zshrc, neovim and tmux setup -buildah copy "$ctr" zshrc $DEV_HOME/.zshrc -buildah copy "$ctr" config $DEV_HOME/.config -# copy ssh setup +# copy start script, zshrc, neovim, tmux setup and ssh setup +buildah copy --chown $DEV_USER:$DEV_USER "$ctr" ./home/. $DEV_HOME buildah copy "$ctr" ssh $SECURE/ssh # zsh and tmux config (immutable)