ARG GOVERSION
FROM golang:${GOVERSION}

ENV GOPATH=/go
WORKDIR /go/src/code.justin.tv/video/pkgpath
COPY . .
RUN go test -v ./...
