From b7a5ca59f57698f2319c27fe8720e4e673db017b Mon Sep 17 00:00:00 2001 From: rainerosion Date: Mon, 20 Feb 2023 12:48:15 +0800 Subject: [PATCH] update Dockerfile --- typecho/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typecho/Dockerfile b/typecho/Dockerfile index f8cc346..dbb2342 100644 --- a/typecho/Dockerfile +++ b/typecho/Dockerfile @@ -54,7 +54,7 @@ RUN set -eux && \ apk update && \ apk add --no-cache $RUN_DEPS && \ usermod -u $UID -o www-data && \ - groupmod -g $GUID www-data && \ + groupmod -g $GUID -o www-data && \ apk add --no-cache --virtual .build-deps $BUILD_DEPS && \ docker-php-ext-configure gd --enable-gd --with-jpeg --with-webp && \ docker-php-ext-install -j $(nproc) $PHP_EXTENSIONS && \