We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a927dc1 commit c1d48bdCopy full SHA for c1d48bd
2 files changed
.github/workflows/deploy.yaml
@@ -25,7 +25,7 @@ jobs:
25
- name: Setup Node.js
26
uses: actions/setup-node@v4
27
with:
28
- node-version: "lts/*"
+ node-version: "22.17.0"
29
cache: "npm"
30
- name: Install dependencies
31
run: npm ci
Dockerfile
@@ -1,5 +1,5 @@
1
# Build stage
2
-FROM docker.io/library/node:lts-alpine AS builder
+FROM docker.io/library/node:22.17.0-alpine3.22 AS builder
3
WORKDIR /app
4
COPY package*.json ./
5
RUN npm ci
0 commit comments