tail/Dockerfile

19 lines
440 B
Docker
Raw Normal View History

2013-09-09 11:04:39 +08:00
# -*- sh -*-
FROM ubuntu:quantal
RUN echo "deb http://archive.ubuntu.com/ubuntu quantal main universe" >> /etc/apt/sources.list
RUN apt-get -qy update
RUN apt-get -qy install golang-go
RUN apt-get -qy install git mercurial bzr subversion
ENV GOPATH $HOME/go
# 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