Update Dockerfile

Making easier to install and update, because dont have to download Github repository manually.
This commit is contained in:
Christer Warén 2019-02-11 16:50:22 +02:00 committed by GitHub
parent 462af89600
commit c2561c90c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,14 @@
FROM docker.io/golang:alpine as builder
FROM golang:alpine as builder
WORKDIR /src
RUN apk add git
RUN git clone https://github.com/yggdrasil-network/yggdrasil-go.git .
ENV CGO_ENABLED=0
RUN ./build
RUN apk add git && \
git clone https://github.com/yggdrasil-network/yggdrasil-go.git . && \
./build
FROM docker.io/alpine
FROM alpine
LABEL maintainer="Christer Waren/CWINFO <christer.waren@cwinfo.org>"
COPY --from=builder /src/yggdrasil /usr/bin/yggdrasil