Revision e08b3ca94e0f66b99f89235364aef6db417ea1e2 authored by William Banfield on 20 August 2021, 19:10:09 UTC, committed by William Banfield on 20 August 2021, 19:10:09 UTC
1 parent bc08145
Raw File
Dockerfile.testing
FROM golang:latest

# 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 26656
EXPOSE 26657
back to top