diff options
| author | Marie <github@yuugi.dev> | 2025-06-19 08:26:00 +0000 |
|---|---|---|
| committer | Marie <github@yuugi.dev> | 2025-06-19 08:26:00 +0000 |
| commit | 32575daf967478219c1be4900c68dfcb8e64e8b2 (patch) | |
| tree | ed1b54574dd4e2da09373b1bb47d6433324b3360 | |
| parent | merge: Add librsvg and imagemagick to docker image (possibly resolves #1102) ... (diff) | |
| download | sharkey-32575daf967478219c1be4900c68dfcb8e64e8b2.tar.gz sharkey-32575daf967478219c1be4900c68dfcb8e64e8b2.tar.bz2 sharkey-32575daf967478219c1be4900c68dfcb8e64e8b2.zip | |
update package list for docker
| -rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 64b8250d8f..e6e60992e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG NODE_VERSION=22.11.0-alpine3.20 FROM node:${NODE_VERSION} as build -RUN apk add git linux-headers alpine-sdk pixman pango cairo cairo-dev pango-dev pixman-dev librsvg imagemagick +RUN apk add git linux-headers alpine-sdk pixman pango cairo cairo-dev pango-dev pixman-dev ENV PYTHONUNBUFFERED=1 ENV COREPACK_DEFAULT_TO_LATEST=0 @@ -38,7 +38,7 @@ ARG UID="991" ARG GID="991" ENV COREPACK_DEFAULT_TO_LATEST=0 -RUN apk add ffmpeg tini jemalloc pixman pango cairo libpng librsvg imagemagick \ +RUN apk add ffmpeg tini jemalloc pixman pango cairo libpng librsvg font-noto font-noto-cjk font-noto-thai \ && corepack enable \ && addgroup -g "${GID}" sharkey \ && adduser -D -u "${UID}" -G sharkey -h /sharkey sharkey \ |