From 352a022f303528be1edcecbbac97a4af2d6bd196 Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Mon, 19 Aug 2024 14:30:41 +0200 Subject: [PATCH] nodejs: use lts as version tag Signed-off-by: Philip H <47042125+pheiduck@users.noreply.github.com> --- .github/workflows/lint.yml | 2 +- .github/workflows/npm-update-bot.yml | 2 +- Dockerfile | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 57e10bc..91f8e84 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,7 +18,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: '20' + node-version: 'lts/*' check-latest: true cache: 'npm' diff --git a/.github/workflows/npm-update-bot.yml b/.github/workflows/npm-update-bot.yml index 7df5de4..b13de14 100644 --- a/.github/workflows/npm-update-bot.yml +++ b/.github/workflows/npm-update-bot.yml @@ -20,7 +20,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: '20' + node-version: 'lts/*' check-latest: true cache: 'npm' diff --git a/Dockerfile b/Dockerfile index c9238f3..99f1acf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN npm ci --omit=dev &&\ # Copy build result to a new image. # This saves a lot of disk space. -FROM docker.io/library/node:20-alpine +FROM docker.io/library/node:lts-alpine HEALTHCHECK CMD /usr/bin/timeout 5s /bin/sh -c "/usr/bin/wg show | /bin/grep -q interface || exit 1" --interval=1m --timeout=5s --retries=3 COPY --from=build_node_modules /app /app @@ -46,4 +46,4 @@ ENV DEBUG=Server,WireGuard # Run Web UI WORKDIR /app -CMD ["/usr/bin/dumb-init", "node", "server.js"] \ No newline at end of file +CMD ["/usr/bin/dumb-init", "node", "server.js"]