diff --git a/test/docker/Dockerfile b/test/docker/Dockerfile index fb5458e82..a2d6ea7b0 100644 --- a/test/docker/Dockerfile +++ b/test/docker/Dockerfile @@ -1,7 +1,4 @@ -FROM golang:1.13 - -# Add testing deps for curl -RUN echo 'deb http://httpredir.debian.org/debian testing main non-free contrib' >> /etc/apt/sources.list +FROM golang:1.14 # Grab deps (jq, hexdump, xxd, killall) RUN apt-get update && \ @@ -28,11 +25,11 @@ RUN make install_abci RUN make install RUN tendermint testnet \ - --config $REPO/test/docker/config-template.toml \ - --node-dir-prefix="mach" \ - --v=4 \ - --populate-persistent-peers=false \ - --o=$REPO/test/p2p/data + --config $REPO/test/docker/config-template.toml \ + --node-dir-prefix="mach" \ + --v=4 \ + --populate-persistent-peers=false \ + --o=$REPO/test/p2p/data # Now copy in the code # NOTE: this will overwrite whatever is in vendor/