Update Dockerfile
This commit is contained in:
parent
d492b334d8
commit
f6fa7a3b6e
11
Dockerfile
11
Dockerfile
|
@ -21,9 +21,14 @@ RUN mv /app/node_modules /node_modules
|
||||||
|
|
||||||
# Install Linux packages
|
# Install Linux packages
|
||||||
RUN apk add -U --no-cache \
|
RUN apk add -U --no-cache \
|
||||||
iptables \
|
dpkg \
|
||||||
wireguard-tools \
|
dumb-init \
|
||||||
dumb-init
|
iptables \
|
||||||
|
iptables-legacy \
|
||||||
|
wireguard-tools
|
||||||
|
|
||||||
|
# Symlink iptables
|
||||||
|
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
|
||||||
|
|
||||||
# Expose Ports
|
# Expose Ports
|
||||||
EXPOSE 51820/udp
|
EXPOSE 51820/udp
|
||||||
|
|
Loading…
Reference in New Issue