Skip to content

Commit 0667e15

Browse files
Changed: Update Github Flow NO_RELEASE dependency node to v22
1 parent 61ceaf0 commit 0667e15

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Use Node.js 18.x
1111
uses: actions/setup-node@v2
1212
with:
13-
node-version: 18.x
13+
node-version: 22.14.0
1414
- name: NPM Build and Test
1515
run: |
1616
npm ci

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18.20.7-alpine AS build
1+
FROM node:22.14.0-alpine AS build
22

33
WORKDIR /srv
44
COPY package*.json /srv/
@@ -8,7 +8,7 @@ COPY src /srv/src/
88
RUN npm run tsc
99
RUN npm ci --production
1010

11-
FROM node:18.20.7-alpine
11+
FROM node:22.14.0-alpine
1212
WORKDIR /srv
1313
COPY --from=build /srv/node_modules /srv/node_modules
1414
COPY --from=build /srv/dist /srv/

0 commit comments

Comments
 (0)