Skip to content

Commit

Permalink
Bump node to v18 (#3427)
Browse files Browse the repository at this point in the history
Signed-off-by: Cintia Sanchez Garcia <[email protected]>
  • Loading branch information
cynthia-sg authored Oct 17, 2023
1 parent 8a4ede5 commit 54774c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ updates:
interval: "weekly"
ignore:
- dependency-name: "node"
versions: ["18-alpine3.16", "19-alpine3.16", "20-alpine3.16"]
versions: ["19-alpine3.18", "20-alpine3.18"]

- package-ecosystem: "docker"
directory: "/cmd/scanner"
Expand Down
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:16-alpine3.16 AS frontend-builder
FROM node:18-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:16-alpine3.16 AS widget-builder
FROM node:18-alpine3.18 AS widget-builder
WORKDIR /widget
COPY widget .
ENV NODE_OPTIONS=--max_old_space_size=4096
Expand Down

0 comments on commit 54774c4

Please sign in to comment.