Add git to build step

This commit is contained in:
Gabe Kangas 2022-03-17 00:24:04 -07:00
parent d8ead6d954
commit dc16eafea4
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA

View File

@ -3,7 +3,7 @@ FROM golang:alpine AS build
RUN mkdir /build
ADD . /build
WORKDIR /build
RUN apk update && apk add --no-cache gcc build-base linux-headers
RUN apk update && apk add --no-cache git gcc build-base linux-headers
ARG VERSION=dev
ENV VERSION=${VERSION}