We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cee8e3c commit 27377d9Copy full SHA for 27377d9
2 files changed
rootfs/Dockerfile
@@ -21,7 +21,7 @@ RUN install-packages procps psmisc \
21
&& install-stack pack $PACK_VERSION \
22
&& install-stack gosu $GOSU_VERSION \
23
&& usermod --add-subuids 200000-201000 --add-subgids 200000-201000 drycc \
24
- && chown -R ${DRYCC_GID}:${DRYCC_UID} /opt/drycc \
+ && chown -R ${DRYCC_UID}:${DRYCC_GID} /opt/drycc \
25
&& rm -rf \
26
/usr/share/doc \
27
/usr/share/man \
rootfs/imagebuilder/prebuild
@@ -3,5 +3,5 @@
3
set -e
4
5
mount --make-rshared /
6
-chown "${DRYCC_GID}":"${DRYCC_UID}" -R /workspace
+chown "${DRYCC_UID}":"${DRYCC_GID}" -R /workspace
7
exec gosu "${DRYCC_UID}" "$@"
0 commit comments