4
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2025-06-20 14:17:14 +00:00

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

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