Skip to content

Commit db788a4

Browse files
authored
Use Node 24 for Docker images (#147)
1 parent 15764fe commit db788a4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
provenance: true
7373
sbom: true
7474
cache-to: type=inline
75-
cache-from: type=registry,ref=brantburnett/couchbase-index-manager:latest
75+
cache-from: type=registry,ref=brantburnett/couchbase-index-manager:main
7676

7777
- name: Publish to NPM
7878
if: startsWith(github.ref, 'refs/tags/') # Only on tags

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20 AS build
1+
FROM node:24 AS build
22

33
WORKDIR /app
44
COPY ["package*.json", "lerna.json", "./"]
@@ -8,7 +8,7 @@ RUN npm ci
88
COPY ./ ./
99
RUN npm run build
1010

11-
FROM node:20
11+
FROM node:24
1212
LABEL maintainer=bburnett@centeredgesoftware.com
1313
WORKDIR /app
1414
COPY --from=build /app ./

0 commit comments

Comments
 (0)