chore: change base image for template base dockerfile [skip ci]

This commit is contained in:
Elliot DeNolf
2025-01-03 09:28:53 -05:00
parent 3d5b9f031f
commit daf314caea
2 changed files with 4 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
# To use this Dockerfile, you have to set `output: 'standalone'` in your next.config.mjs file.
# From https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile
FROM node:18-alpine AS base
FROM node:22.12.0-alpine AS base
# Install dependencies only when needed
FROM base AS deps

View File

@@ -1,6 +1,7 @@
# To use this Dockerfile, you have to set `output: 'standalone'` in your next.config.mjs file.
# From https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile
FROM node:18-alpine AS base
FROM node:22.12.0-alpine AS base
# Install dependencies only when needed
FROM base AS deps