chore(deps): update docker.io/node docker tag to v23
Some checks failed
Build, check & Test / run (push) Failing after 30s
Lint / run (push) Failing after 28s
Build Docker Image / build_docker (push) Failing after 1m40s

This commit is contained in:
Renovate [BOT] 2024-12-08 18:20:43 +00:00
parent bc97d9106b
commit 82189721fb
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
#########
# Build #
#########
FROM docker.io/node:22-alpine AS build
FROM docker.io/node:23-alpine AS build
# Build env variables
ENV ASTRO_TELEMETRY_DISABLED=1
@ -35,7 +35,7 @@ RUN npm prune --omit=dev
##############
# Production #
##############
FROM docker.io/node:22-alpine AS prod
FROM docker.io/node:23-alpine AS prod
# inform software to be in production
ENV NODE_ENV=production

View File

@ -3,7 +3,7 @@
#########
# Build #
#########
FROM docker.io/node:22-alpine as BUILD_IMAGE
FROM docker.io/node:23-alpine as BUILD_IMAGE
# run as non root user
USER node