1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-21 13:47:39 +02:00

Task/bump docker base image (#9716)

As reported in #9710 . This PR updates to 20.19.0-alpine3.21 which
according to docker's own scan now longer is affected by the CVE
This commit is contained in:
Christopher Kolstad 2025-04-08 10:56:50 +02:00 committed by GitHub
parent 1078dd1c41
commit 4b3c808169
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: [20.18.1-alpine]
version: [20.19.0-alpine3.21]
steps:
- name: Checkout tag v${{ inputs.version }}
if: ${{ inputs.version != '' }}

View File

@ -1,4 +1,4 @@
ARG NODE_VERSION=20.18.3-alpine
ARG NODE_VERSION=20.19.0-alpine3.21
FROM node:$NODE_VERSION AS builder