From a27ec4e201c7a1b71226db5285fda26e9f435c46 Mon Sep 17 00:00:00 2001 From: "Philip H." <47042125+pheiduck@users.noreply.github.com> Date: Sun, 26 Nov 2023 10:56:40 +0000 Subject: [PATCH] npm: set global config --- .github/workflows/lint.yml | 2 +- .github/workflows/npm-update-bot.yml | 2 +- Dockerfile | 14 ++++++++++---- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index fd64a2cb..1fbc2fd8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -23,7 +23,7 @@ jobs: - name: npm run lint run: | - npm config set fund false + npm config set -g fund false cd src npm ci --legacy-peer-deps npm run lint diff --git a/.github/workflows/npm-update-bot.yml b/.github/workflows/npm-update-bot.yml index a90a321d..1bea6940 100644 --- a/.github/workflows/npm-update-bot.yml +++ b/.github/workflows/npm-update-bot.yml @@ -22,7 +22,7 @@ jobs: - name: Bot 🤖 "Updating NPM Packages..." run: | - npm config set fund false + npm config set -g fund false npm update cd src npm update diff --git a/Dockerfile b/Dockerfile index 8c875d24..1980470e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,9 @@ FROM docker.io/library/node:18-alpine@sha256:3428c2de886bf4378657da6fe86e105573a609c94df1f7d6a70e57d2b51de21f AS build_node_modules -RUN npm config set fund false &&\ - npm config set update-notifier false +# Hide fund and update-notifier message +RUN npm config set -g fund false &&\ + npm config set -g update-notifier false # Copy Web UI COPY src/ /app/ @@ -13,6 +14,11 @@ RUN npm ci --legacy-peer-deps # Copy build result to a new image. # This saves a lot of disk space. FROM docker.io/library/node:18-alpine@sha256:3428c2de886bf4378657da6fe86e105573a609c94df1f7d6a70e57d2b51de21f + +# Hide fund and update-notifier message +RUN npm config set -g fund false &&\ + npm config set -g update-notifier false + COPY --from=build_node_modules /app /app # Move node_modules one directory up, so during development @@ -29,8 +35,8 @@ RUN npm i -g nodemon # Install Linux packages RUN apk add -U --no-cache \ - wireguard-tools \ - dumb-init + wireguard-tools \ + dumb-init # Expose Ports EXPOSE 51820/udp