Browse Source

Add git to build step

pull/1789/head
Gabe Kangas 4 years ago
parent
commit
dc16eafea4
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA
  1. 2
      Dockerfile

2
Dockerfile

@ -3,7 +3,7 @@ FROM golang:alpine AS build @@ -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}

Loading…
Cancel
Save