Skip to content

Commit 4f1904c

Browse files
committed
fix(docker): update base image version to node:24-alpine
1 parent 1f4d382 commit 4f1904c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docker/api.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The web Dockerfile is copy-pasted into our main docs at /docs/handbook/deploying-with-docker.
22
# Make sure you update this Dockerfile, the Dockerfile in the web workspace and copy that over to Dockerfile in the docs.
3-
FROM node:24.12.0-alpine AS base
3+
FROM node:24-alpine AS base
44

55
FROM base AS builder
66
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.

docker/docs.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
FROM node:24.12.0-alpine AS base
2+
FROM node:24-alpine AS base
33

44
# ---- Builder Stage ----
55
FROM base AS builder

docker/web.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This Dockerfile is copy-pasted into our main docs at /docs/handbook/deploying-with-docker.
22
# Make sure you update both files!
3-
FROM node:24.12.0-alpine AS base
3+
FROM node:24-alpine AS base
44

55
FROM base AS builder
66
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.

0 commit comments

Comments
 (0)