Update Dockerfile
This commit is contained in:
parent
52e9fe2f79
commit
4405874078
|
|
@ -5,9 +5,10 @@
|
||||||
FROM node:22-alpine
|
FROM node:22-alpine
|
||||||
|
|
||||||
# Install build dependencies for native modules (sharp, etc.)
|
# Install build dependencies for native modules (sharp, etc.)
|
||||||
|
# bash: Required for build scripts that use bash
|
||||||
# libc6-compat: Required for sharp on Alpine
|
# libc6-compat: Required for sharp on Alpine
|
||||||
# python3 make g++: Required for node-gyp builds
|
# 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
|
WORKDIR /app
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue