docker-ipd/Dockerfile

9 lines
184 B
Docker
Raw Normal View History

2016-05-24 15:45:33 +00:00
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"]