diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 54c4512..cf444d2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -26,7 +26,6 @@ jobs: - name: npm run lint run: | - npm config set -g fund false cd src npm ci npm run lint diff --git a/.github/workflows/npm-update-bot.yml b/.github/workflows/npm-update-bot.yml index d63abd0..82b47f7 100644 --- a/.github/workflows/npm-update-bot.yml +++ b/.github/workflows/npm-update-bot.yml @@ -25,7 +25,6 @@ jobs: - name: Bot 🤖 "Updating NPM Packages..." run: | - npm config set -g fund false npm install -g --silent npm-check-updates ncu -u npm update diff --git a/Dockerfile b/Dockerfile index ea45fdc..5daf7b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,6 @@ FROM docker.io/library/node:18-alpine AS build_node_modules -# 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/ WORKDIR /app @@ -15,10 +11,6 @@ RUN npm ci # This saves a lot of disk space. FROM docker.io/library/node:18-alpine -# 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