0
0
mirror of https://github.com/slackhq/nebula.git synced 2024-12-22 04:08:31 +00:00
slackhq_nebula/docker/Dockerfile

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"]