test: add xxd dep to dockerfile

This commit is contained in:
Ethan Buchman 2016-09-10 19:00:02 -04:00
parent 364932238a
commit 7f538266ea
1 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
# Pull base image. # Pull base image.
FROM golang:1.6 FROM golang:1.6
# Grab deps (jq, hexdump) # Grab deps (jq, hexdump, xxd)
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
jq bsdmainutils && \ jq bsdmainutils vim-common && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
ENV TENDERMINT_ORG $GOPATH/src/github.com/tendermint/ ENV TENDERMINT_ORG $GOPATH/src/github.com/tendermint/