mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-22 09:30:28 +00:00
8b7b3452cf
- Multiple architectures supported by using Golang's official Debian Stretch image. - Upgrading os to latest updates - Adding all files to image - Creating user for yggdrasil (kinda unused) - Building from source code
19 lines
415 B
Docker
19 lines
415 B
Docker
FROM golang:stretch
|
|
MAINTAINER Christer Waren/CWINFO "christer.waren@cwinfo.org"
|
|
|
|
RUN apt-get update \
|
|
&& apt-get upgrade -y
|
|
|
|
ADD . /src
|
|
|
|
WORKDIR /src
|
|
|
|
RUN adduser --system --home /etc/yggdrasil-network --uid 1000 yggdrasil-network \
|
|
&& rm -rf build_* && ./build \
|
|
&& cp yggdrasil /usr/bin \
|
|
&& cp contrib/docker/entrypoint.sh /
|
|
|
|
VOLUME [ "/etc/yggdrasil-network" ]
|
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|