mirror of https://github.com/slackhq/nebula.git
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"]
|