File tree Expand file tree Collapse file tree 4 files changed +6
-7
lines changed
Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ artifacts:
1414 publish-to :
1515 - github-packages
1616 config :
17- node-version : 22
17+ node-version : 24
1818
1919# Container builds from source (no artifact dependency)
2020# Containerfile copies source code and runs npm install
Original file line number Diff line number Diff line change 33; SPDX-License-Identifier: CC0-1.0
44
55@diggsweden:registry = https://npm.pkg.github.com
6- always-auth = true
76
87# must use for correct package-lock.json
98registry = https://registry.npmjs.org/
Original file line number Diff line number Diff line change 22#
33# SPDX-License-Identifier: CC0-1.0
44
5- FROM node:22.20 .0-slim@sha256:d943bf20249f8b92eff6f605362df2ee9cf2d6ce2ea771a8886e126ec8714f08 AS build
5+ FROM node:24.11 .0-slim AS build
66WORKDIR /app
77
88COPY package*.json ./
@@ -15,7 +15,7 @@ RUN npm run build
1515
1616RUN npm prune --omit=dev
1717
18- FROM node:22.20 .0-slim@sha256:d943bf20249f8b92eff6f605362df2ee9cf2d6ce2ea771a8886e126ec8714f08 AS runtime
18+ FROM node:24.11 .0-slim AS runtime
1919ENV NODE_ENV=production
2020WORKDIR /app
2121
Original file line number Diff line number Diff line change 11{
22 "extends" : " ./tsconfig.json" ,
33 "compilerOptions" : {
4- "module" : " NodeNext " ,
4+ "module" : " commonjs " ,
55 "moduleResolution" : " NodeNext" ,
66 "target" : " ES2020" ,
77 "esModuleInterop" : true ,
8- "sourceMap" : true ,
8+ "sourceMap" : true
99 },
1010 "include" : [" src" , " tests" ]
11- }
11+ }
You can’t perform that action at this time.
0 commit comments