mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-29 14:45:07 +03:00

standalone cli tool like genkeys/main.go that uses the address.AddrForKey function to convert a pubkey to an IPv6 address. ``` +$ go run main.go <thepubkey>. +IP: <theipv6ip> ```
27 lines
815 B
Docker
27 lines
815 B
Docker
FROM docker.io/golang:alpine as builder
|
|
|
|
COPY . /src
|
|
WORKDIR /src
|
|
|
|
ENV CGO_ENABLED=0
|
|
|
|
RUN apk add git && ./build && go build -o /src/genkeys cmd/genkeys/main.go
|
|
RUN apk add git && ./build && go build -o /src/addrforkey cmd/addrforkey/main.go
|
|
|
|
FROM docker.io/alpine
|
|
|
|
COPY --from=builder /src/yggdrasil /usr/bin/yggdrasil
|
|
COPY --from=builder /src/yggdrasilctl /usr/bin/yggdrasilctl
|
|
COPY --from=builder /src/genkeys /usr/bin/genkeys
|
|
COPY --from=builder /src/addrforkey /usr/bin/addrforkey
|
|
COPY contrib/docker/entrypoint.sh /usr/bin/entrypoint.sh
|
|
|
|
# RUN addgroup -g 1000 -S yggdrasil-network \
|
|
# && adduser -u 1000 -S -g 1000 --home /etc/yggdrasil-network yggdrasil-network
|
|
#
|
|
# USER yggdrasil-network
|
|
# TODO: Make running unprivileged work
|
|
|
|
VOLUME [ "/etc/yggdrasil-network" ]
|
|
|
|
ENTRYPOINT [ "/usr/bin/entrypoint.sh" ]
|