From 05c8bf3142ff102f1d27dc5be15a22ee71d8556e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 10:27:46 +0000 Subject: [PATCH] Bump node from 18-alpine3.18 to 22-alpine3.18 in /cmd/hub Bumps node from 18-alpine3.18 to 22-alpine3.18. --- updated-dependencies: - dependency-name: node dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- cmd/hub/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/hub/Dockerfile b/cmd/hub/Dockerfile index 10c54ba22f..469cec7ae0 100644 --- a/cmd/hub/Dockerfile +++ b/cmd/hub/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /go/src/github.com/artifacthub/hub/cmd/hub RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o /hub . # Build frontend -FROM node:18-alpine3.18 AS frontend-builder +FROM node:22-alpine3.18 AS frontend-builder RUN apk --no-cache add jq WORKDIR /web COPY web . @@ -17,7 +17,7 @@ RUN yarn install RUN yarn build # Build widget -FROM node:18-alpine3.18 AS widget-builder +FROM node:22-alpine3.18 AS widget-builder WORKDIR /widget COPY widget . ENV NODE_OPTIONS=--max_old_space_size=4096