Browse Source

Added tendermint/testing docker image description

pull/1529/head
Greg Szabo 6 years ago
committed by Ethan Buchman
parent
commit
4bca7c1009
2 changed files with 21 additions and 0 deletions
  1. +18
    -0
      DOCKER/Dockerfile.testing
  2. +3
    -0
      DOCKER/Makefile

+ 18
- 0
DOCKER/Dockerfile.testing View File

@ -0,0 +1,18 @@
FROM golang:1.10.1
# Grab deps (jq, hexdump, xxd, killall)
RUN apt-get update && \
apt-get install -y --no-install-recommends \
jq bsdmainutils vim-common psmisc netcat
# Add testing deps for curl
RUN echo 'deb http://httpredir.debian.org/debian testing main non-free contrib' >> /etc/apt/sources.list && \
apt-get update && \
apt-get install -y --no-install-recommends curl
VOLUME /go
EXPOSE 46656
EXPOSE 46657

+ 3
- 0
DOCKER/Makefile View File

@ -7,6 +7,9 @@ push:
build_develop:
docker build -t "tendermint/tendermint:develop" -f Dockerfile.develop .
build_testing:
docker build --tag tendermint/testing -f ./Dockerfile.testing .
push_develop:
docker push "tendermint/tendermint:develop"


Loading…
Cancel
Save