mirror of
https://github.com/slackhq/nebula.git
synced 2025-01-11 03:48:12 +00:00
11 lines
302 B
Docker
11 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"]
|