Files
goreplay/Dockerfile
T
2015-08-20 09:51:44 +03:00

12 lines
278 B
Docker

FROM golang:1.5
RUN cd /go/src/ && GOOS=linux GOARCH=386 ./make.bash --no-clean
RUN apt-get update && apt-get install ruby vim-common -y
WORKDIR /gopath/src/github.com/buger/gor/
ADD . /gopath/src/github.com/buger/gor/
RUN go get -u github.com/golang/lint/golint
RUN go get