consul/build-support/docker/Test-Flake.dockerfile
R.B. Boyer fdb6b80672
Switch to go 1.13.7 (#7262)
- You can no longer cross submodule boundaries with ./... in go
  subcommands like `go list` or `go test`. The makefile and CI scripts
  were updated accordingly.

- Also of note: `go mod vendor` now omits things build ignored.
2020-02-12 10:15:24 -06:00

14 lines
257 B
Docker

FROM travisci/ci-garnet:packer-1512502276-986baf0
ENV GOLANG_VERSION 1.13.7
RUN mkdir -p /home/travis/go && chown -R travis /home/travis/go
ENV GOPATH /home/travis/go
USER travis
COPY flake.sh /usr/local/bin/flake.sh
ENTRYPOINT [ "bash", "flake.sh" ]