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