Skip to content

Commit

Permalink
build: bump node@20 (#2913)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexplischke authored Aug 28, 2024
1 parent 15ca784 commit e959482
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18
v20
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ WORKDIR /app

EXPOSE 3000 35729
COPY . /app
RUN yarn install && yarn build
RUN npm install && \
npm run build

CMD ["yarn", "serve"]
CMD ["npm", "run", "serve"]
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@
"prettier": "^3.3.3"
},
"engines": {
"node": ">=18.0.0"
"node": ">=20.0.0"
}
}

0 comments on commit e959482

Please sign in to comment.