Skip to content

Commit

Permalink
refactor: update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ahamidullah committed Dec 12, 2018
1 parent 9213545 commit fb78bb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM golang:1.11-alpine as build
RUN apk add --update --no-cache git gcc musl-dev
RUN apk add --update --no-cache git gcc musl-dev make
ADD . /go/src/moul.io/depviz
WORKDIR /go/src/moul.io/depviz
RUN GO111MODULE=on go get -v .
RUN GO111MODULE=on go install -v ./cmd/...
RUN make install

FROM alpine
RUN apk add --update --no-cache ca-certificates
Expand Down

0 comments on commit fb78bb9

Please sign in to comment.