summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorMarie <github@yuugi.dev>2025-02-07 22:50:19 +0000
committerMarie <github@yuugi.dev>2025-02-07 22:50:19 +0000
commitb60e2b363cc1e10cd6c0fde519f168eb4d461ceb (patch)
tree7231b9fab64e265ddf0d898e304a79f4590b423f /Dockerfile
parentmerge: fix(docker): Alpine build failing due to missing dev packages (pkgconf... (diff)
downloadsharkey-b60e2b363cc1e10cd6c0fde519f168eb4d461ceb.tar.gz
sharkey-b60e2b363cc1e10cd6c0fde519f168eb4d461ceb.tar.bz2
sharkey-b60e2b363cc1e10cd6c0fde519f168eb4d461ceb.zip
docker: add more packages
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 766309d62b..598ad1f6d4 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
+RUN apk add git linux-headers alpine-sdk pixman libpng freetype zlib
ENV PYTHONUNBUFFERED=1
ENV COREPACK_DEFAULT_TO_LATEST=0