We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15d66ca commit 3323cbdCopy full SHA for 3323cbd
Dockerfile
@@ -87,8 +87,7 @@ RUN apk add --no-cache \
87
intl \
88
redis \
89
tokenizer \
90
- && rm -rf /var/cache/apk/* \
91
- && apk del shadow
+ && rm -rf /var/cache/apk/*
92
93
WORKDIR /app
94
docker/scripts/entrypoint.sh
@@ -46,7 +46,7 @@ if [ "$PGID" -lt 33 ] || [ "$PGID" -gt 65534 ]; then
46
exit 1
47
fi
48
49
-# Only modify user/group if shadow package is available (it's removed in production)
+# Only modify user/group if shadow package is available
50
if command -v usermod >/dev/null 2>&1; then
51
if [ "$(id -u www-data)" -ne "$PUID" ]; then
52
usermod -o -u "$PUID" www-data
0 commit comments