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.
24 lines
612 B
24 lines
612 B
# vim: ft=dockerfile |
|
|
|
FROM debian:buster as stage |
|
|
|
ARG PACKAGE_BASEURL=https://download.zerotier.com/debian/buster/pool/main/z/zerotier-one/ |
|
ARG ARCH=amd64 |
|
ARG VERSION |
|
|
|
RUN apt-get update -qq && apt-get install curl -y |
|
RUN curl -sSL -o zerotier-one.deb "${PACKAGE_BASEURL}/zerotier-one_${VERSION}_${ARCH}.deb" |
|
|
|
FROM debian:buster |
|
|
|
COPY --from=stage zerotier-one.deb . |
|
|
|
RUN dpkg -i zerotier-one.deb && rm -f zerotier-one.deb |
|
RUN echo "${VERSION}" >/etc/zerotier-version |
|
RUN rm -rf /var/lib/zerotier-one |
|
|
|
COPY entrypoint.sh.release /entrypoint.sh |
|
RUN chmod 755 /entrypoint.sh |
|
|
|
CMD [] |
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|