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
4 changes: 2 additions & 2 deletions content/guides/angular/containerize.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ Copy and replace the contents of your existing `Dockerfile` with the configurati
# =========================================
# Stage 1: Build the Angular Application
# =========================================
ARG NODE_VERSION=22.14.0-alpine
ARG NGINX_VERSION=alpine3.21
ARG NODE_VERSION=24.7.0-alpine
ARG NGINX_VERSION=alpine3.22

# Use a lightweight Node.js image for building (customizable via ARG)
FROM node:${NODE_VERSION} AS builder
Expand Down
2 changes: 1 addition & 1 deletion content/guides/angular/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Create a file named `Dockerfile.dev` in your project root with the following con
# =========================================

# Define the Node.js version to use (Alpine for a small footprint)
ARG NODE_VERSION=22.14.0-alpine
ARG NODE_VERSION=24.7.0-alpine

# Set the base image for development
FROM node:${NODE_VERSION} AS dev
Expand Down
6 changes: 3 additions & 3 deletions content/guides/reactjs/containerize.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ For consistency, please use the same responses shown in the example below when p
| Question | Answer |
|------------------------------------------------------------|-----------------|
| What application platform does your project use? | Node |
| What version of Node do you want to use? | 22.14.0-alpine |
| What version of Node do you want to use? | 24.7.0-alpine |
| Which package manager do you want to use? | npm |
| Do you want to run "npm run build" before starting server? | yes |
| What directory is your build output to? | dist |
Expand Down Expand Up @@ -124,8 +124,8 @@ Copy and replace the contents of your existing `Dockerfile` with the configurati
# =========================================
# Stage 1: Build the React.js Application
# =========================================
ARG NODE_VERSION=22.14.0-alpine
ARG NGINX_VERSION=alpine3.21
ARG NODE_VERSION=24.7.0-alpine
ARG NGINX_VERSION=alpine3.22

# Use a lightweight Node.js image for building (customizable via ARG)
FROM node:${NODE_VERSION} AS builder
Expand Down
2 changes: 1 addition & 1 deletion content/guides/reactjs/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Create a file named `Dockerfile.dev` in your project root with the following con
# =========================================
# Stage 1: Develop the React.js Application
# =========================================
ARG NODE_VERSION=22.14.0-alpine
ARG NODE_VERSION=24.7.0-alpine

# Use a lightweight Node.js image for development
FROM node:${NODE_VERSION} AS dev
Expand Down
2 changes: 1 addition & 1 deletion content/guides/vuejs/containerize.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Replace the contents of your current `Dockerfile` with the optimized configurati
# Stage 1: Build the Vue.js Application
# =========================================
ARG NODE_VERSION=23.11.0-alpine
ARG NGINX_VERSION=alpine3.21
ARG NGINX_VERSION=alpine3.22

# Use a lightweight Node.js image for building (customizable via ARG)
FROM node:${NODE_VERSION} AS builder
Expand Down