Skip to content

Commit 99318f7

Browse files
Upgrades Node to latest LTS.
1 parent e9f9697 commit 99318f7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [16.x]
15+
node-version: [22.x]
1616

1717
steps:
1818
- name: Checkout repository

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Stage 1 - Build
22
#
3-
FROM node:18-alpine as build
3+
FROM node:22-alpine as build
44
WORKDIR /usr/src/app
55

66
RUN apk add --update --no-cache \
@@ -19,7 +19,7 @@ RUN yarn build
1919

2020
# Stage 2 - Runner
2121
#
22-
FROM node:18-alpine
22+
FROM node:22-alpine
2323
WORKDIR /usr/src/app
2424

2525
COPY package.json tsconfig.json yarn.lock ./

0 commit comments

Comments
 (0)