tail/Dockerfile

20 lines
509 B
Docker
Raw Normal View History

FROM golang
2013-09-09 11:04:39 +08:00
RUN mkdir -p $GOPATH/src/github.com/ActiveState/tail/
ADD . $GOPATH/src/github.com/ActiveState/tail/
2013-09-09 11:04:39 +08:00
# expecting to fetch dependencies successfully.
RUN go get -v github.com/ActiveState/tail
# expecting to run the test successfully.
RUN go test -v github.com/ActiveState/tail
2013-09-09 11:20:08 +08:00
# expecting to install successfully
RUN go install -v github.com/ActiveState/tail
2013-09-09 11:20:08 +08:00
RUN go install -v github.com/ActiveState/tail/cmd/gotail
RUN $GOPATH/bin/gotail -h || true
ENV PATH $GOPATH/bin:$PATH
CMD ["gotail"]