diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..fc9a66e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM golang:1.6 + +RUN apt-get update && \ + apt-get install -y git +WORKDIR /go/src/app +RUN git clone https://github.com/martinp/ipd.git . && \ + go get github.com/martinp/ipd +CMD ["ipd"]