Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
This commit is contained in:
Jarred Sumner
2024-04-03 20:27:50 -07:00
committed by GitHub
parent a4b151962a
commit 76795af695
3 changed files with 6 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ ARG GLIBC_VERSION=2.34-r0
# https://github.com/oven-sh/bun/issues/5545#issuecomment-1722461083
ARG GLIBC_VERSION_AARCH64=2.26-r1
# We add python3 for node-gyp, see https://github.com/oven-sh/bun/issues/9807
RUN apk --no-cache add \
ca-certificates \
curl \
@@ -21,6 +22,7 @@ RUN apk --no-cache add \
gpg \
gpg-agent \
unzip \
python3 \
&& arch="$(apk --print-arch)" \
&& case "${arch##*-}" in \
x86_64) build="x64-baseline";; \

View File

@@ -3,6 +3,7 @@ FROM debian:bullseye-slim AS build
# https://github.com/oven-sh/bun/releases
ARG BUN_VERSION=latest
# We add python3 for node-gyp, see https://github.com/oven-sh/bun/issues/9807
RUN apt-get update -qq \
&& apt-get install -qq --no-install-recommends \
ca-certificates \
@@ -11,6 +12,7 @@ RUN apt-get update -qq \
gpg \
gpg-agent \
unzip \
python3 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& arch="$(dpkg --print-architecture)" \

View File

@@ -3,6 +3,7 @@ FROM debian:bullseye-slim AS build
# https://github.com/oven-sh/bun/releases
ARG BUN_VERSION=latest
# We add python3 for node-gyp, see https://github.com/oven-sh/bun/issues/9807
RUN apt-get update -qq \
&& apt-get install -qq --no-install-recommends \
ca-certificates \
@@ -11,6 +12,7 @@ RUN apt-get update -qq \
gpg \
gpg-agent \
unzip \
python3 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& arch="$(dpkg --print-architecture)" \