You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
501 B
20 lines
501 B
FROM alpine:latest |
|
MAINTAINER Adam Ierymenko <adam.ierymenko@zerotier.com> |
|
|
|
LABEL version="1.2.4" |
|
LABEL description="Containerized ZeroTier One for use on CoreOS or other Docker-only Linux hosts." |
|
|
|
# Uncomment to build in container |
|
#RUN apk add --update alpine-sdk linux-headers |
|
|
|
RUN apk add --update libgcc libstdc++ |
|
|
|
ADD zerotier-one / |
|
RUN chmod 0755 /zerotier-one |
|
RUN ln -sf /zerotier-one /zerotier-cli |
|
RUN mkdir -p /var/lib/zerotier-one |
|
|
|
ADD main.sh / |
|
RUN chmod 0755 /main.sh |
|
|
|
ENTRYPOINT /main.sh
|
|
|