chore(deps): update docker.io/node docker tag to v22 (#22)
Some checks are pending
Build, check & Test / run (push) Waiting to run
Build Docker Image / build_docker (push) Waiting to run
Lint / run (push) Waiting to run

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| docker.io/node | stage | major | `20-alpine` -> `22-alpine` |
| docker.io/node | final | major | `20-alpine` -> `22-alpine` |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MTUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjQxNS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->

Reviewed-on: #22
Co-authored-by: Renovate Bot <renovate@dzeio.com>
Co-committed-by: Renovate Bot <renovate@dzeio.com>
This commit is contained in:
Renovate [BOT] 2024-06-26 14:16:54 +00:00 committed by Avior
parent 0548e6e67c
commit b9b51fa4f5
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