You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
214 B
9 lines
214 B
FROM alpine:3.12.1
|
|
|
|
RUN apk add --no-cache \
|
|
openresolv iptables iproute2 wireguard-tools \
|
|
findutils # Needed for find's -printf flag.
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|