1
1
Fork 0
wgvanity-container/Dockerfile

15 lines
353 B
Docker
Raw Normal View History

2023-12-19 08:59:18 +01:00
FROM alpine:latest
LABEL Description="This image is based on alpine:latest and is used to generate Wireguard keys" \
2021-08-17 23:07:42 +02:00
Author="david@socialnerds.org" \
Version="0.2.1" \
2021-08-17 23:07:42 +02:00
License="MIT"
2023-12-19 08:59:18 +01:00
RUN apk --no-cache add cargo && \
2021-08-17 23:07:42 +02:00
cargo install wireguard-vanity-address
COPY entrypoint.sh /root/
ENTRYPOINT ["/root/entrypoint.sh"]
CMD ["-h"]