github.com/rainforestapp/rainforest-cli@v2.12.0+incompatible/Dockerfile (about)

     1  FROM golang:1.9.7
     2  WORKDIR /go/src/github.com/rainforestapp/rainforest-cli
     3  RUN curl -s https://glide.sh/get | sh
     4  ADD glide.yaml glide.lock ./
     5  RUN glide install
     6  COPY . .
     7  RUN go-wrapper install -ldflags "-X main.build=docker"
     8  
     9  ENTRYPOINT ["rainforest-cli", "--skip-update"]