From e4f4893c2074835768ae0a0996a9ad6fcd923d60 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 04:04:55 +0000 Subject: [PATCH] Bump node from 18-alpine3.21 to 23-alpine3.21 in /cmd/hub Bumps node from 18-alpine3.21 to 23-alpine3.21. --- 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 833c9f256..2c8d554ae 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.21 AS frontend-builder +FROM node:23-alpine3.21 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.21 AS widget-builder +FROM node:23-alpine3.21 AS widget-builder WORKDIR /widget COPY widget . ENV NODE_OPTIONS=--max_old_space_size=4096