Skip to content

Commit 64f4b0a

Browse files
authored
fix: update docker base image in templates (#13020)
<!-- Thank you for the PR! Please go through the checklist below and make sure you've completed all the steps. Please review the [CONTRIBUTING.md](https://github.com/payloadcms/payload/blob/main/CONTRIBUTING.md) document in this repository if you haven't already. The following items will ensure that your PR is handled as smoothly as possible: - PR Title must follow conventional commits format. For example, `feat: my new feature`, `fix(plugin-seo): my fix`. - Minimal description explained as if explained to someone not immediately familiar with the code. - Provide before/after screenshots or code diffs if applicable. - Link any related issues/discussions from GitHub or Discord. - Add review comments if necessary to explain to the reviewer the logic behind a change ### What? ### Why? ### How? Fixes # --> Went ahead and bumped the base from `node:22.12.0-alpine` to `node:22.17.0-alpine` across all templates to fix #13019.
1 parent c8ef924 commit 64f4b0a

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

templates/_template/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# To use this Dockerfile, you have to set `output: 'standalone'` in your next.config.mjs file.
22
# From https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile
33

4-
FROM node:22.12.0-alpine AS base
4+
FROM node:22.17.0-alpine AS base
55

66
# Install dependencies only when needed
77
FROM base AS deps

templates/blank/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# To use this Dockerfile, you have to set `output: 'standalone'` in your next.config.mjs file.
22
# From https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile
33

4-
FROM node:22.12.0-alpine AS base
4+
FROM node:22.17.0-alpine AS base
55

66
# Install dependencies only when needed
77
FROM base AS deps

templates/website/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# To use this Dockerfile, you have to set `output: 'standalone'` in your next.config.js file.
22
# From https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile
33

4-
FROM node:22.12.0-alpine AS base
4+
FROM node:22.17.0-alpine AS base
55

66
# Install dependencies only when needed
77
FROM base AS deps

templates/with-postgres/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# To use this Dockerfile, you have to set `output: 'standalone'` in your next.config.mjs file.
22
# From https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile
33

4-
FROM node:22.12.0-alpine AS base
4+
FROM node:22.17.0-alpine AS base
55

66
# Install dependencies only when needed
77
FROM base AS deps

templates/with-vercel-mongodb/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# To use this Dockerfile, you have to set `output: 'standalone'` in your next.config.mjs file.
22
# From https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile
33

4-
FROM node:22.12.0-alpine AS base
4+
FROM node:22.17.0-alpine AS base
55

66
# Install dependencies only when needed
77
FROM base AS deps

templates/with-vercel-postgres/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# To use this Dockerfile, you have to set `output: 'standalone'` in your next.config.mjs file.
22
# From https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile
33

4-
FROM node:22.12.0-alpine AS base
4+
FROM node:22.17.0-alpine AS base
55

66
# Install dependencies only when needed
77
FROM base AS deps

templates/with-vercel-website/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# To use this Dockerfile, you have to set `output: 'standalone'` in your next.config.js file.
22
# From https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile
33

4-
FROM node:22.12.0-alpine AS base
4+
FROM node:22.17.0-alpine AS base
55

66
# Install dependencies only when needed
77
FROM base AS deps

0 commit comments

Comments
 (0)