mirror of
https://github.com/slackhq/nebula.git
synced 2026-06-30 18:40:29 +02:00
184cdc8586
smoke-extra / freebsd-amd64 (push) Failing after 19s
smoke-extra / linux-amd64-ipv6disable (push) Failing after 15s
smoke-extra / netbsd-amd64 (push) Failing after 16s
smoke-extra / openbsd-amd64 (push) Failing after 14s
smoke-extra / linux-386 (push) Failing after 17s
smoke / Run multi node smoke test (push) Failing after 1m31s
Build and test / Static checks (push) Successful in 1m47s
Build and test / Test linux (push) Failing after 2m12s
Build and test / Test linux-boringcrypto (push) Failing after 3m8s
Build and test / Test linux-pkcs11 (push) Failing after 3m1s
Build and test / Cross-build linux-arm (push) Successful in 3m6s
Build and test / Cross-build linux-mips (push) Successful in 3m52s
Build and test / Cross-build linux-other (push) Successful in 3m10s
Build and test / Cross-build windows (push) Successful in 1m5s
Build and test / Cross-build freebsd (push) Successful in 1m35s
Build and test / Cross-build netbsd (push) Successful in 1m36s
Build and test / Cross-build openbsd (push) Successful in 1m36s
Build and test / Cross-build mobile (push) Successful in 3m18s
smoke-extra / Run windows smoke test (push) Has been cancelled
Build and test / Test macos (push) Has been cancelled
Build and test / Test windows (push) Has been cancelled
Build and test / CI status (push) Has been cancelled
22 lines
761 B
Docker
22 lines
761 B
Docker
FROM gcr.io/distroless/static:latest
|
|
|
|
ARG TARGETOS TARGETARCH
|
|
|
|
ARG VERSION=dev
|
|
ARG REVISION=unknown
|
|
LABEL org.opencontainers.image.title="nebula" \
|
|
org.opencontainers.image.description="A scalable overlay networking tool with a focus on performance, simplicity and security" \
|
|
org.opencontainers.image.vendor="Nebula OSS" \
|
|
org.opencontainers.image.source="https://github.com/slackhq/nebula" \
|
|
org.opencontainers.image.version="${VERSION}" \
|
|
org.opencontainers.image.revision="${REVISION}"
|
|
|
|
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"]
|