We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9496270 commit fac5af2Copy full SHA for fac5af2
build.Dockerfile
@@ -3,6 +3,12 @@ FROM node:lts-alpine AS base
3
ARG ZANE_DOMAINS
4
ENV ZANE_DOMAINS=$ZANE_DOMAINS
5
6
+# Install additionnal dependencies for bun, ref : https://github.com/oven-sh/bun/issues/5545
7
+RUN apk --no-cache add ca-certificates wget
8
+RUN wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub
9
+RUN wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.28-r0/glibc-2.28-r0.apk
10
+RUN apk add --no-cache --force-overwrite glibc-2.28-r0.apk
11
+
12
# Install bun
13
RUN npm install -g bun
14
0 commit comments