From 92a62969504d799a9736b0f40520d8ccafaeb149 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Mon, 18 May 2020 10:32:21 -0800 Subject: [PATCH] Add git to docker container --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 99ed55a..1895556 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,9 @@ FROM golang:1.14-alpine WORKDIR /go/src/Goff COPY . . +RUN apk add --no-cache git + RUN go get -d -v ./... RUN go install -v ./... -ENTRYPOINT /go/bin/goff \ No newline at end of file +ENTRYPOINT /go/bin/goff