Skip to content

Commit

Permalink
Merge pull request #120 from burghardt/dockerfile_format
Browse files Browse the repository at this point in the history
Set FROM to alpine:3.19.0. Format for more readability.
  • Loading branch information
burghardt authored Jan 25, 2024
2 parents 82244d1 + a91d10f commit 439533a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
FROM alpine:3.19
FROM alpine:3.19.0

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

0 comments on commit 439533a

Please sign in to comment.