Update Dockerfile

This commit is contained in:
kleap-admin 2026-01-16 17:09:46 +00:00
parent dd7ab26296
commit ff05d25eff
1 changed files with 2 additions and 1 deletions

View File

@ -5,9 +5,10 @@
FROM node:22-alpine
# Install build dependencies for native modules (sharp, etc.)
# bash: Required for build scripts that use bash
# libc6-compat: Required for sharp on Alpine
# python3 make g++: Required for node-gyp builds
RUN apk add --no-cache libc6-compat python3 make g++
RUN apk add --no-cache bash libc6-compat python3 make g++
WORKDIR /app