test/persist: use unix socket for rpc

This commit is contained in:
Ethan Buchman
2017-03-06 02:42:00 -05:00
parent fc6d22db32
commit caaafa192b
2 changed files with 15 additions and 15 deletions

View File

@@ -1,10 +1,13 @@
# Pull base image.
FROM golang:1.7.4
# Add testing deps for curl
RUN echo 'deb http://httpredir.debian.org/debian testing main non-free contrib' >> /etc/apt/sources.list
# Grab deps (jq, hexdump, xxd, killall)
RUN apt-get update && \
apt-get install -y --no-install-recommends \
jq bsdmainutils vim-common psmisc netcat
jq bsdmainutils vim-common psmisc netcat curl
# Setup tendermint repo
ENV REPO $GOPATH/src/github.com/tendermint/tendermint