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

Commit

Permalink
Update Node.js to v22.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jun 13, 2024
1 parent 7764ca9 commit 87c2014
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:22.2.0 as build
FROM node:22.3.0 as build
WORKDIR /app
COPY package*.json ./
RUN npm install --no-save
COPY . .
ENV GITHUB_API_BASE_URL="" GITHUB_LOGIN="" GITHUB_API_TOKEN_FILE=""
RUN npm run 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": {
"lint": "astro sync && astro check && eslint . --ext '.ts' && prettier --check source",
Expand Down

0 comments on commit 87c2014

Please sign in to comment.