9 lines
223 B
Docker
9 lines
223 B
Docker
FROM alpine:3.13.6
|
|
|
|
RUN apk add --no-cache \
|
|
openresolv iptables ip6tables iproute2 wireguard-tools \
|
|
findutils # Needed for find's -printf flag
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|