Browse Source
chore: update node to krypton (24) (#2536)
update to node krypton
pull/2540/head
Bernd Storath
3 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
5 additions and
5 deletions
-
.github/workflows/lint.yml
-
Dockerfile
-
Dockerfile.dev
|
|
@ -24,7 +24,7 @@ jobs: |
|
|
- name: Setup Node |
|
|
- name: Setup Node |
|
|
uses: actions/setup-node@v6 |
|
|
uses: actions/setup-node@v6 |
|
|
with: |
|
|
with: |
|
|
node-version: "lts/jod" |
|
|
node-version: "lts/krypton" |
|
|
check-latest: true |
|
|
check-latest: true |
|
|
cache: "pnpm" |
|
|
cache: "pnpm" |
|
|
|
|
|
|
|
|
@ -57,7 +57,7 @@ jobs: |
|
|
- name: Setup Node |
|
|
- name: Setup Node |
|
|
uses: actions/setup-node@v6 |
|
|
uses: actions/setup-node@v6 |
|
|
with: |
|
|
with: |
|
|
node-version: "lts/jod" |
|
|
node-version: "lts/krypton" |
|
|
check-latest: true |
|
|
check-latest: true |
|
|
cache: "pnpm" |
|
|
cache: "pnpm" |
|
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
FROM docker.io/library/node:jod-alpine AS build |
|
|
FROM docker.io/library/node:krypton-alpine AS build |
|
|
WORKDIR /app |
|
|
WORKDIR /app |
|
|
|
|
|
|
|
|
# update corepack |
|
|
# update corepack |
|
|
@ -25,7 +25,7 @@ RUN apk add linux-headers build-base go git && \ |
|
|
|
|
|
|
|
|
# Copy build result to a new image. |
|
|
# Copy build result to a new image. |
|
|
# This saves a lot of disk space. |
|
|
# This saves a lot of disk space. |
|
|
FROM docker.io/library/node:jod-alpine |
|
|
FROM docker.io/library/node:krypton-alpine |
|
|
WORKDIR /app |
|
|
WORKDIR /app |
|
|
|
|
|
|
|
|
HEALTHCHECK --interval=1m --timeout=5s --retries=3 CMD /usr/bin/timeout 5s /bin/sh -c "/usr/bin/wg show | /bin/grep -q interface || exit 1" |
|
|
HEALTHCHECK --interval=1m --timeout=5s --retries=3 CMD /usr/bin/timeout 5s /bin/sh -c "/usr/bin/wg show | /bin/grep -q interface || exit 1" |
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
FROM docker.io/library/node:jod-alpine |
|
|
FROM docker.io/library/node:krypton-alpine |
|
|
WORKDIR /app |
|
|
WORKDIR /app |
|
|
|
|
|
|
|
|
# update corepack |
|
|
# update corepack |
|
|
|