Skip to content

Node v22 LTS upgrade #128

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 10 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
build: fix node-libcurl compile issues on linux/arm64 by installing r…
…equired build deps
  • Loading branch information
spwoodcock committed Apr 8, 2025
commit be0fcbf482854cf1d9eebca6509eac59104e23db
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ FROM base AS build
RUN apt-get update --quiet \
&& DEBIAN_FRONTEND=noninteractive \
apt-get install -y --quiet --no-install-recommends \
# deps required for node-libcurl build
"build-essential" \
"python3" \
"libcurl4-openssl-dev" \
"git" \
&& rm -rf /var/lib/apt/lists/*
COPY package.json /var/www/
Expand Down