open-consul/test/integration/connect/envoy/Dockerfile-test-sds-server
R.B. Boyer 7d20b68959
ci: upgrade bats and the circle machine executors to get integration tests to function again (#12918)
Bonus change: send less context when building the test-sds-server to
speed up the setup.
2022-05-03 11:21:32 -05:00

9 lines
122 B
Plaintext

FROM golang:latest
WORKDIR /go/src
COPY ./ .
RUN go build -v -o test-sds-server sds.go
CMD ["/go/src/test-sds-server"]