Skip to content

Commit

Permalink
fix docker file for go modules
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherDBond committed Feb 18, 2020
1 parent 43b79f9 commit ddfdfc1
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
FROM golang:1.10 as golangBuilder

RUN curl https://glide.sh/get | sh
FROM golang:1.12 as golangBuilder

COPY . /go/src/github.com/jpfielding/gorets

WORKDIR /go/src/github.com/jpfielding/gorets

RUN make vendor build-explorer-svc
RUN GO111MODULE="on" make build-explorer-svc

# ==============

Expand Down

0 comments on commit ddfdfc1

Please sign in to comment.