github.com/tobiash/gqlgen@v0.5.1/.circleci/golang.Dockerfile (about)

     1  FROM golang:1.10
     2  
     3  RUN curl -L -o /bin/dep https://github.com/golang/dep/releases/download/v0.4.1/dep-linux-amd64 && chmod +x /bin/dep
     4  RUN go get -u github.com/alecthomas/gometalinter github.com/vektah/gorunpkg
     5  RUN gometalinter --install
     6  
     7  WORKDIR /go/src/github.com/99designs/gqlgen
     8  
     9  COPY Gopkg.* /go/src/github.com/99designs/gqlgen/
    10  RUN dep ensure -v --vendor-only
    11  
    12  COPY . /go/src/github.com/99designs/gqlgen/