5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-09 16:20:26 +00:00

Merge pull request #14 from cwinfo/new-docker-solution

New-Docker-Solution to Branch Develop
This commit is contained in:
Christer Warén 2019-02-11 16:54:45 +02:00 committed by GitHub
commit 2b70f967a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,19 @@
FROM docker.io/golang:alpine as builder
FROM golang:alpine as builder
COPY . /src
WORKDIR /src
ENV CGO_ENABLED=0
RUN apk add git && ./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
COPY --from=builder /src/yggdrasilctl /usr/bin/yggdrasilctl
COPY contrib/docker/entrypoint.sh /usr/bin/entrypoint.sh
COPY --from=builder /src/contrib/docker/entrypoint.sh /usr/bin/entrypoint.sh
# RUN addgroup -g 1000 -S yggdrasil-network \
# && adduser -u 1000 -S -g 1000 --home /etc/yggdrasil-network yggdrasil-network