Bump node to v24.13

This commit is contained in:
Felipe Knorr Kuhn 2026-01-13 14:20:20 -08:00
parent f8c999b51f
commit 89081171d3
No known key found for this signature in database
GPG key ID: 79619B52BB097C1A
9 changed files with 21 additions and 20 deletions

View file

@ -7,8 +7,8 @@ WORKDIR /build
RUN apt-get update && \
apt-get install -y curl ca-certificates && \
curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \
apt-get install -y nodejs=22.14.0-1nodesource1 build-essential python3 pkg-config && \
curl -fsSL https://deb.nodesource.com/setup_24.x | bash - && \
apt-get install -y nodejs=24.13.0-1nodesource1 build-essential python3 pkg-config && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
@ -28,8 +28,8 @@ FROM rust:1.84-bookworm AS runtime
RUN apt-get update && \
apt-get install -y curl ca-certificates && \
curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \
apt-get install -y nodejs=22.14.0-1nodesource1 && \
curl -fsSL https://deb.nodesource.com/setup_24.x | bash - && \
apt-get install -y nodejs=24.13.0-1nodesource1 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

View file

@ -1,4 +1,4 @@
FROM node:22.14.0-bookworm-slim AS builder
FROM node:24.13-bookworm-slim AS builder
ARG commitHash
ENV DOCKER_COMMIT_HASH=${commitHash}