Add git to docker container

This commit is contained in:
Dustin Pianalto 2020-05-18 10:32:21 -08:00
parent 631b02563f
commit 92a6296950

View File

@ -3,6 +3,8 @@ FROM golang:1.14-alpine
WORKDIR /go/src/Goff WORKDIR /go/src/Goff
COPY . . COPY . .
RUN apk add --no-cache git
RUN go get -d -v ./... RUN go get -d -v ./...
RUN go install -v ./... RUN go install -v ./...