Skip to content

Commit

Permalink
Build: Use the 22.6 version of the Node image
Browse files Browse the repository at this point in the history
- Workaround for the building issue with the current version of Node
  image (node:current-alpine) by using the 22.6 version of the Node
  image (node:22.6-alpine).
  (issue described on vercel/next.js#69263)
- Update dependencies on package.json and package-lock.json.
- Minor refactor on dashboard welcome page.
  • Loading branch information
matheusmisumoto committed Aug 25, 2024
1 parent 584541b commit 7a0a2e9
Show file tree
Hide file tree
Showing 4 changed files with 309 additions and 305 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:current-alpine AS base
FROM node:22.6-alpine AS base

FROM base AS deps
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
Expand Down
Loading

0 comments on commit 7a0a2e9

Please sign in to comment.