Add Dockerfile for Alpine Linux, wiregard-tools and libqrencode.

This commit is contained in:
Krzysztof Burghardt 2024-01-24 13:56:37 +01:00
parent f643efcc2f
commit cbcf5685e5
No known key found for this signature in database
GPG Key ID: 20D1B02D50095EA7

8
Dockerfile Normal file
View File

@ -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"]