mirror of
https://github.com/slackhq/nebula.git
synced 2025-11-08 20:23:59 +01:00
This makes it easier to use the docker container smoke test that GitHub actions runs. There is also `make smoke-docker-race` that runs the smoke test with `-race` enabled.
8 lines
88 B
Docker
8 lines
88 B
Docker
FROM debian:buster
|
|
|
|
ADD ./build /nebula
|
|
|
|
WORKDIR /nebula
|
|
|
|
ENTRYPOINT ["/nebula/nebula"]
|