We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ba5d58 commit 9a635d9Copy full SHA for 9a635d9
2 files changed
.github/workflows/semantic-release.yaml
@@ -25,7 +25,7 @@ jobs:
25
node-version: 24
26
27
- name: Install dependencies
28
- run: npm ci
+ run: yarn install --frozen-lockfile
29
30
- name: Set up Docker Buildx
31
uses: docker/setup-buildx-action@v3
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:23-alpine AS builder
+FROM node:24-alpine AS builder
2
3
WORKDIR /app
4
@@ -10,7 +10,7 @@ COPY src ./src
10
RUN yarn build
11
12
13
-FROM pmoscode/nodejs-23-nondebug:dev
+FROM pmoscode/nodejs-24-nondebug:dev
14
15
COPY --chown=nonroot:nonroot --from=builder /app/ ./
16
0 commit comments