Modernize Dockerfile to use the golang image

This commit is contained in:
Sridhar Ratnakumar 2015-06-28 20:19:59 -07:00
parent d88c762aa1
commit 4d381fccb0
1 changed files with 2 additions and 10 deletions

View File

@ -1,11 +1,4 @@
FROM ubuntu
RUN apt-get -qy update
RUN apt-get -y install golang-go
RUN apt-get -y install git
RUN apt-get -y install mercurial subversion
ENV GOPATH $HOME/go
FROM golang
RUN mkdir -p $GOPATH/src/github.com/ActiveState/tail/
ADD . $GOPATH/src/github.com/ActiveState/tail/
@ -24,4 +17,3 @@ RUN $GOPATH/bin/gotail -h || true
ENV PATH $GOPATH/bin:$PATH
CMD ["gotail"]