We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9f9697 commit 99318f7Copy full SHA for 99318f7
.github/workflows/ci_build.yml
@@ -12,7 +12,7 @@ jobs:
12
13
strategy:
14
matrix:
15
- node-version: [16.x]
+ node-version: [22.x]
16
17
steps:
18
- name: Checkout repository
Dockerfile
@@ -1,6 +1,6 @@
1
# Stage 1 - Build
2
#
3
-FROM node:18-alpine as build
+FROM node:22-alpine as build
4
WORKDIR /usr/src/app
5
6
RUN apk add --update --no-cache \
@@ -19,7 +19,7 @@ RUN yarn build
19
20
# Stage 2 - Runner
21
22
-FROM node:18-alpine
+FROM node:22-alpine
23
24
25
COPY package.json tsconfig.json yarn.lock ./
0 commit comments