mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-30 07:05:06 +03:00
10 lines
209 B
Docker
10 lines
209 B
Docker
FROM alpine
|
|
|
|
ARG TARGETPLATFORM
|
|
ENV TARGETPLATFORM=$TARGETPLATFORM
|
|
|
|
COPY ${TARGETPLATFORM}/* /usr/bin/
|
|
|
|
COPY contrib/docker/alpine/entrypoint.sh /usr/bin/entrypoint.sh
|
|
|
|
ENTRYPOINT [ "/usr/bin/entrypoint.sh" ]
|