Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions nextjs-base/Containerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Originally from: https://github.com/devcontainers/images/blob/main/src/javascript-node/.devcontainer/Dockerfile
# [Choice] Node.js version (use -bullseye variants on local arm64/Apple Silicon): 18, 16, 14, 18-bullseye, 16-bullseye, 14-bullseye, 18-buster, 16-buster, 14-buster
ARG VARIANT=20-bullseye-slim
#
# Kept on the same node release as node-service-base. The floor is set by this
# image's own tooling rather than by the apps it builds: build-app.sh installs
# js-beautify, whose dependencies now require node 22.
ARG VARIANT=22-bookworm-slim
FROM node:${VARIANT}

ARG USERNAME=node
Expand Down
5 changes: 3 additions & 2 deletions webapp-base/Containerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Originally from: https://github.com/devcontainers/images/blob/main/src/javascript-node/.devcontainer/Dockerfile
# [Choice] Node.js version (use -bullseye variants on local arm64/Apple Silicon): 18, 16, 14, 18-bullseye, 16-bullseye, 14-bullseye, 18-buster, 16-buster, 14-buster
ARG VARIANT=20-bullseye-slim
#
# Kept on the same node release as the other base images here.
ARG VARIANT=22-bookworm-slim
FROM node:${VARIANT}

ARG USERNAME=node
Expand Down