You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
426 B

  1. FROM golang:1.10.1
  2. # Grab deps (jq, hexdump, xxd, killall)
  3. RUN apt-get update && \
  4. apt-get install -y --no-install-recommends \
  5. jq bsdmainutils vim-common psmisc netcat
  6. # Add testing deps for curl
  7. RUN echo 'deb http://httpredir.debian.org/debian testing main non-free contrib' >> /etc/apt/sources.list && \
  8. apt-get update && \
  9. apt-get install -y --no-install-recommends curl
  10. VOLUME /go
  11. EXPOSE 26656
  12. EXPOSE 26657