We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15764fe commit db788a4Copy full SHA for db788a4
.github/workflows/build.yml
@@ -72,7 +72,7 @@ jobs:
72
provenance: true
73
sbom: true
74
cache-to: type=inline
75
- cache-from: type=registry,ref=brantburnett/couchbase-index-manager:latest
+ cache-from: type=registry,ref=brantburnett/couchbase-index-manager:main
76
77
- name: Publish to NPM
78
if: startsWith(github.ref, 'refs/tags/') # Only on tags
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:20 AS build
+FROM node:24 AS build
2
3
WORKDIR /app
4
COPY ["package*.json", "lerna.json", "./"]
@@ -8,7 +8,7 @@ RUN npm ci
8
COPY ./ ./
9
RUN npm run build
10
11
-FROM node:20
+FROM node:24
12
LABEL maintainer=bburnett@centeredgesoftware.com
13
14
COPY --from=build /app ./
0 commit comments