Browse Source

Dockerfile: don't update npm to latest, fix iptables paths (#1574)

* Dockerfile: don't update npm to latest

It's breaking nightly builds

* Dockerfile: path for iptables-legacy dosn't exist

* Dockerfile: fix iptables paths

* fixup: iptables-legacy

* Update Dockerfile
pull/1575/head
Philip H. 3 months ago
committed by GitHub
parent
commit
c6dce0f6fb
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 5
      Dockerfile

5
Dockerfile

@ -2,9 +2,6 @@
# nodejs 20 hangs on build with armv6/armv7
FROM docker.io/library/node:18-alpine AS build_node_modules
# Update npm to latest
RUN npm install -g npm@latest
# Copy Web UI
COPY src /app
WORKDIR /app
@ -39,7 +36,7 @@ RUN apk add --no-cache \
wireguard-tools
# Use iptables-legacy
RUN update-alternatives --install /sbin/iptables iptables /sbin/iptables-legacy 10 --slave /sbin/iptables-restore iptables-restore /sbin/iptables-legacy-restore --slave /sbin/iptables-save iptables-save /sbin/iptables-legacy-save
RUN update-alternatives --install /usr/sbin/iptables iptables /usr/sbin/iptables-legacy 10 --slave /usr/sbin/iptables-restore iptables-restore /usr/sbin/iptables-legacy-restore --slave /usr/sbin/iptables-save iptables-save /usr/sbin/iptables-legacy-save
# Set Environment
ENV DEBUG=Server,WireGuard

Loading…
Cancel
Save