Skip to content

Commit 3bc17c6

Browse files
committed
Update node
1 parent 529eb8f commit 3bc17c6

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
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
@@ -72,7 +72,7 @@ jobs:
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

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM node:18-alpine as builder
1+
FROM node:24-alpine AS builder
22
RUN apk add --no-cache --virtual .build-deps python3 make g++
33
COPY package.json package-lock.json tsconfig.json entrypoint.sh ./
44
COPY src src
55
RUN npm ci && npm run tsc
66

7-
FROM node:18-alpine as app
7+
FROM node:24-alpine AS app
88
WORKDIR /usr/src/app
99
RUN apk add --no-cache git postgresql-client
1010
COPY --from=builder ./node_modules ./node_modules

0 commit comments

Comments
 (0)