mirror of
https://github.com/slackhq/nebula.git
synced 2024-12-22 04:08:31 +00:00
12 lines
302 B
Docker
12 lines
302 B
Docker
FROM gcr.io/distroless/static:latest
|
|
|
|
ARG TARGETOS TARGETARCH
|
|
COPY build/$TARGETOS-$TARGETARCH/nebula /nebula
|
|
COPY build/$TARGETOS-$TARGETARCH/nebula-cert /nebula-cert
|
|
|
|
VOLUME ["/config"]
|
|
|
|
ENTRYPOINT ["/nebula"]
|
|
# Allow users to override the args passed to nebula
|
|
CMD ["-config", "/config/config.yml"]
|