mirror of
https://github.com/dangeroustech/ZeroTierBridge.git
synced 2025-12-06 09:06:58 +00:00
Compare commits
12 Commits
v1.2.2
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c1f5dabe3d | ||
|
|
fd8043c501 | ||
|
|
5e6beb973b | ||
|
|
6666a5bc6c | ||
|
|
d7b7ff961c | ||
|
|
e02ffe1f36 | ||
|
|
afd5d5e7ae | ||
|
|
86864780ec | ||
|
|
57afc23fd7 | ||
|
|
ab60a1c20e | ||
|
|
e0c38935ba | ||
|
|
57390dc7c1 |
8
.github/workflows/docker-build.yml
vendored
8
.github/workflows/docker-build.yml
vendored
@@ -43,6 +43,7 @@ jobs:
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Login to Registry
|
||||
if: github.event_name != 'pull_request'
|
||||
id: login
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
@@ -56,10 +57,13 @@ jobs:
|
||||
with:
|
||||
context: .
|
||||
build-args: |
|
||||
VERSION=1.12.2
|
||||
push: true
|
||||
VERSION=1.16.0-2
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
platforms: linux/amd64,linux/arm64
|
||||
tags: ${{ env.REGISTRY_IMAGE }}:latest
|
||||
provenance: false
|
||||
sbom: false
|
||||
outputs: type=registry,compression=zstd,compression-level=6,oci-mediatypes=true,force-compression=true
|
||||
cache-from: type=gha
|
||||
cache-to: type=gha,mode=max
|
||||
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
## [1.2.4](https://github.com/dangeroustech/ZeroTierBridge/compare/v1.2.3...v1.2.4) (2025-10-26)
|
||||
|
||||
|
||||
|
||||
## [1.2.3](https://github.com/dangeroustech/ZeroTierBridge/compare/v1.2.2...v1.2.3) (2025-10-26)
|
||||
|
||||
|
||||
|
||||
## [1.2.2](https://github.com/dangeroustech/ZeroTierBridge/compare/v1.2.1...v1.2.2) (2025-10-26)
|
||||
|
||||
|
||||
|
||||
23
Dockerfile
23
Dockerfile
@@ -1,10 +1,12 @@
|
||||
FROM debian:12.6 as stage
|
||||
ARG PACKAGE_BASEURL=https://download.zerotier.com/debian/bookworm/pool/main/z/zerotier-one
|
||||
FROM debian:13.2 AS stage
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
ARG PACKAGE_BASEURL=https://download.zerotier.com/debian/trixie/pool/main/z/zerotier-one
|
||||
ARG TARGETARCH
|
||||
ARG VERSION=1.12.2
|
||||
ARG VERSION=1.16.0-2
|
||||
RUN apt-get update -qq && apt-get install -qq --no-install-recommends -y \
|
||||
ca-certificates=20230311+deb12u1 \
|
||||
curl=7.88.1-10+deb12u14
|
||||
ca-certificates=20250419 \
|
||||
curl=8.14.1-2
|
||||
RUN set -e; \
|
||||
DETECTED_ARCH="${TARGETARCH:-}"; \
|
||||
if [ -z "$DETECTED_ARCH" ]; then DETECTED_ARCH="$(dpkg --print-architecture)"; fi; \
|
||||
@@ -17,15 +19,18 @@ RUN set -e; \
|
||||
echo "Downloading ZeroTier: arch=$ARCH_MAPPING version=$VERSION"; \
|
||||
curl -fsSL -o zerotier-one.deb "${PACKAGE_BASEURL}/zerotier-one_${VERSION}_${ARCH_MAPPING}.deb"
|
||||
|
||||
FROM debian:12.6
|
||||
FROM debian:13.2
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
ARG VERSION
|
||||
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=2:4.0.2-3 \
|
||||
iptables=1.8.9-2 \
|
||||
openssl=3.0.17-1~deb12u3 \
|
||||
adduser=3.152 \
|
||||
procps=2:4.0.4-9 \
|
||||
iptables=1.8.11-2 \
|
||||
openssl=3.5.1-1 \
|
||||
&& apt-get clean \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
RUN dpkg -i zerotier-one.deb && rm -f zerotier-one.deb
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
{
|
||||
"version": "1.2.2"
|
||||
"version": "1.2.4"
|
||||
}
|
||||
Reference in New Issue
Block a user