docker: test if _build directory exists before chown

This commit is contained in:
Glenn Y. Rolland 2021-12-06 11:10:43 +01:00
parent ce2b0e546d
commit c33e2da44e

View file

@ -17,6 +17,8 @@ if ! grep -q "^[^:]*:[^:]*:$EXT_UID:" /etc/passwd ; then
useradd -r -u "$EXT_UID" -g appuser appuser
fi
chown -R "$EXT_UID:$EXT_GID" _build
if [ -d "_build" ]; then
chown -R "$EXT_UID:$EXT_GID" _build
fi
exec gosu "$EXT_UID:$EXT_GID" make "$@"