Merge pull request #264 from cwinfo/develop-patch-1

Update Dockerfile
This commit is contained in:
Neil Alexander 2018-12-17 13:59:18 +00:00 committed by GitHub
commit 6b02b72fe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,9 @@ FROM docker.io/golang:alpine as builder
COPY . /src
WORKDIR /src
ENV CGO_ENABLED=0
RUN apk add git && ./build
FROM docker.io/alpine