chore(deps): update docker.io/node docker tag to v22
Some checks failed
Build Docker Image / build_docker (push) Failing after 2m45s
Lint / run (push) Failing after 39s
Build, check & Test / run (push) Successful in 8m1s
Delete Packages / Delete the package on a closed Pull Request (pull_request) Failing after 6s
Delete Packages / Delete the package on a deleted branch (pull_request) Has been skipped

This commit is contained in:
Renovate [BOT] 2024-06-26 10:09:49 +00:00
parent 18c672298d
commit cc30ef6fe0
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
#########
# Build #
#########
FROM docker.io/node:20-alpine AS build
FROM docker.io/node:22-alpine AS build
# run as non root user
USER node
@ -29,7 +29,7 @@ RUN npm prune --omit=dev
##############
# Production #
##############
FROM docker.io/node:20-alpine AS prod
FROM docker.io/node:22-alpine AS prod
# inform software to be in production
ENV NODE_ENV=production

View File

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