Skip to content
This repository has been archived by the owner on Jun 23, 2024. It is now read-only.

Update Node.js to v22.3.0 #719

Merged
merged 1 commit into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:24.04 as just
RUN apt update && apt install just

FROM node:22.2.0 as build
FROM node:22.3.0 as build
COPY --from=just /usr/bin/just /usr/local/bin/just
WORKDIR /app
COPY package*.json ./
Expand All @@ -10,7 +10,7 @@ COPY . .
ENV GITHUB_API_BASE_URL="" GITHUB_LOGIN="" GITHUB_API_TOKEN_FILE=""
RUN just build

FROM node:22.2.0-alpine as runtime
FROM node:22.3.0-alpine as runtime
RUN mkdir -p /home/node/app/node_modules && chown --recursive node:node /home/node/app
WORKDIR /home/node/app
COPY package*.json ./
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"node": "22.x"
},
"volta": {
"node": "22.2.0"
"node": "22.3.0"
},
"scripts": {},
"dependencies": {
Expand Down
Loading