mirror of
https://github.com/dangeroustech/ZeroTierBridge.git
synced 2025-12-06 00:56:58 +00:00
19 lines
778 B
Docker
19 lines
778 B
Docker
FROM debian:bookworm as stage
|
|
ARG PACKAGE_BASEURL=https://download.zerotier.com/debian/bookworm/pool/main/z/zerotier-one
|
|
ARG ARCH=amd64
|
|
ARG VERSION=1.12.2
|
|
RUN apt-get update -qq && apt-get install -qq --no-install-recommends -y ca-certificates curl
|
|
RUN curl -sSL -o zerotier-one.deb "${PACKAGE_BASEURL}/zerotier-one_${VERSION}_${ARCH}.deb"
|
|
|
|
FROM debian:bookworm
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
COPY --from=stage zerotier-one.deb .
|
|
RUN apt-get update -qq && apt-get install -qq --no-install-recommends -y procps iptables openssl \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
RUN dpkg -i zerotier-one.deb && rm -f zerotier-one.deb
|
|
RUN echo "${VERSION}" >/etc/zerotier-version
|
|
COPY entrypoint.sh entrypoint.sh
|
|
RUN chmod 755 entrypoint.sh
|
|
ENTRYPOINT ["/app/entrypoint.sh"] |