File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3535 - uses : actions/checkout@v4
3636 - uses : actions/setup-node@v4
3737 with :
38- node-version : 18
38+ node-version : 24
3939 cache : npm
4040 - id : cache
4141 uses : actions/cache/restore@v4
7272 run : docker ps
7373 - uses : actions/setup-node@v4
7474 with :
75- node-version : 18
75+ node-version : 24
7676 cache : npm
7777 - id : cache
7878 uses : actions/cache/restore@v4
@@ -103,7 +103,7 @@ jobs:
103103 - uses : actions/checkout@v4
104104 - uses : actions/setup-node@v4
105105 with :
106- node-version : 18
106+ node-version : 24
107107 cache : npm
108108 - run : npm ci
109109 - name : restore postgres nyc output
Original file line number Diff line number Diff line change 1- FROM node:18 -alpine as builder
1+ FROM node:24 -alpine AS builder
22RUN apk add --no-cache --virtual .build-deps python3 make g++
33COPY package.json package-lock.json tsconfig.json entrypoint.sh ./
44COPY src src
55RUN npm ci && npm run tsc
66
7- FROM node:18 -alpine as app
7+ FROM node:24 -alpine AS app
88WORKDIR /usr/src/app
99RUN apk add --no-cache git postgresql-client
1010COPY --from=builder ./node_modules ./node_modules
You can’t perform that action at this time.
0 commit comments