mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-09 16:20:26 +00:00
Revert "Simplifying Dockerfile"
This commit is contained in:
parent
46a5c7cccf
commit
857a33c91b
@ -1,19 +1,18 @@
|
||||
FROM golang:alpine as builder
|
||||
FROM docker.io/golang:alpine as builder
|
||||
|
||||
COPY . /src
|
||||
WORKDIR /src
|
||||
|
||||
ENV CGO_ENABLED=0
|
||||
|
||||
RUN apk add git && \
|
||||
git clone https://github.com/yggdrasil-network/yggdrasil-go.git . && \
|
||||
./build
|
||||
RUN apk add git && ./build
|
||||
|
||||
FROM alpine
|
||||
FROM docker.io/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 --from=builder /src/contrib/docker/entrypoint.sh /usr/bin/entrypoint.sh
|
||||
COPY 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
|
||||
|
Loading…
Reference in New Issue
Block a user