From 6df6fb4a8484067c767639a3a6c07983b263a66d Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 24 May 2024 15:21:07 +0000 Subject: [PATCH] chore(deps): update node docker tag to v22 --- .drone.yml | 8 ++++---- Dockerfile-frontend-ui | 2 +- Dockerfile-nginx | 2 +- Dockerfile-qa | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.drone.yml b/.drone.yml index 0a917950..673fd7f6 100644 --- a/.drone.yml +++ b/.drone.yml @@ -20,7 +20,7 @@ steps: - mkdir deploy - name: build qa ui - image: node:21-alpine + image: node:22-alpine commands: - cd qa/ui - npm install --network-timeout=100000 @@ -93,7 +93,7 @@ steps: - master - name: build frontend fic ui - image: node:21-alpine + image: node:22-alpine commands: - cd frontend/fic - npm install --network-timeout=100000 @@ -438,7 +438,7 @@ steps: - master - name: build frontend fic ui - image: node:21-alpine + image: node:22-alpine commands: - cd frontend/fic - npm install --network-timeout=100000 @@ -486,7 +486,7 @@ steps: - master - name: build qa ui - image: node:21-alpine + image: node:22-alpine commands: - cd qa/ui - npm install --network-timeout=100000 diff --git a/Dockerfile-frontend-ui b/Dockerfile-frontend-ui index 43493dc9..cf361935 100644 --- a/Dockerfile-frontend-ui +++ b/Dockerfile-frontend-ui @@ -1,4 +1,4 @@ -FROM node:21-alpine as nodebuild +FROM node:22-alpine as nodebuild WORKDIR /ui diff --git a/Dockerfile-nginx b/Dockerfile-nginx index 157ecb7e..9043b407 100644 --- a/Dockerfile-nginx +++ b/Dockerfile-nginx @@ -1,4 +1,4 @@ -FROM node:21-alpine as nodebuild +FROM node:22-alpine as nodebuild WORKDIR /ui diff --git a/Dockerfile-qa b/Dockerfile-qa index b8ef6b62..3cc6a15e 100644 --- a/Dockerfile-qa +++ b/Dockerfile-qa @@ -1,4 +1,4 @@ -FROM node:21-alpine as nodebuild +FROM node:22-alpine as nodebuild WORKDIR /ui -- 2.47.2