test: fix docker and apps

This commit is contained in:
Ethan Buchman
2017-03-05 20:39:52 -05:00
parent 0fa34f7f67
commit e4e70ece3f
4 changed files with 22 additions and 14 deletions

View File

@ -10,10 +10,6 @@ RUN apt-get update && \
ENV REPO $GOPATH/src/github.com/tendermint/tendermint
WORKDIR $REPO
# Install the apps
ADD scripts/install_abci_apps.sh install_abci_apps.sh
RUN bash install_abci_apps.sh
# Install the vendored dependencies before copying code
# docker caching prevents reinstall on code change!
ADD glide.yaml glide.yaml
@ -21,6 +17,10 @@ ADD glide.lock glide.lock
ADD Makefile Makefile
RUN make get_vendor_deps
# Install the apps
ADD scripts scripts
RUN bash scripts/install_abci_apps.sh
# Now copy in the code
COPY . $REPO