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

Update Dockerfile

ENV CGO_ENABLED=0
This commit is contained in:
Christer Warén
2018-12-17 15:28:45 +02:00
committed by GitHub
parent 566f3a9d50
commit 712ec7d3fb

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