From cbcf5685e545761cd361d1da90166fb43976e362 Mon Sep 17 00:00:00 2001 From: Krzysztof Burghardt Date: Wed, 24 Jan 2024 13:56:37 +0100 Subject: [PATCH] Add Dockerfile for Alpine Linux, wiregard-tools and libqrencode. --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..161f523 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM alpine:3.19 +RUN apk add -U wireguard-tools libqrencode-tools +COPY easy-wg-quick /usr/bin/easy-wg-quick +RUN chmod +x /usr/bin/easy-wg-quick +RUN mkdir /pwd +VOLUME /pwd +WORKDIR /pwd +ENTRYPOINT ["/usr/bin/easy-wg-quick"]