Skip to content
Snippets Groups Projects
Commit 31d3e789 authored by Andri Joos's avatar Andri Joos :blush:
Browse files

fix directory permissions for bundle tool dir

parent 8552ddb2
No related branches found
No related tags found
No related merge requests found
Pipeline #7424 passed with stage
in 1 minute and 51 seconds
......@@ -36,7 +36,8 @@ RUN apk add --no-cache bash openjdk17-jdk \
&& addgroup ${USERNAME} -g ${USER_GID} \
&& adduser ${USERNAME} --uid ${USER_UID} --ingroup ${USERNAME} --disabled-password \
&& echo -e '#!/bin/bash\njava -jar '"$BUNDLETOOL_FILE"' "$@"' > ${BUNDLETOOL_BIN} \
&& chmod +x ${BUNDLETOOL_BIN}
&& chmod +x ${BUNDLETOOL_BIN} \
&& chown -R ${USERNAME}:${USERNAME} ${BUNDLETOOL_DIR}
USER ${USERNAME}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment