Browse Source

npm: set global config

pull/686/head
Philip H. 1 year ago
committed by GitHub
parent
commit
a27ec4e201
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/lint.yml
  2. 2
      .github/workflows/npm-update-bot.yml
  3. 14
      Dockerfile

2
.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

2
.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

14
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

Loading…
Cancel
Save