Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/hub/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand All @@ -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
Expand Down