From 92fbf12c27cd2c210f1fc9dc4e8465477198b83c Mon Sep 17 00:00:00 2001 From: Florian Ritterhoff <32478819+fritterhoff@users.noreply.github.com> Date: Tue, 17 Dec 2024 07:24:24 +0100 Subject: [PATCH] feat: start including tailscale binaries for tailscale status checking before script runs (#192) --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 4d1b6d1..ae3c9a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,7 @@ RUN pip3 install --break-system-packages --upgrade pip wheel && \ pip3 install --break-system-packages --upgrade cryptography && \ pip3 install --break-system-packages --ignore-installed -r /tmp/requirements.txt RUN ansible-galaxy install -r /tmp/requirements.yml +COPY --from=docker.io/tailscale/tailscale:v1.78.3@sha256:9d4c17a8451e2d1282c22aee1f08d28dc106979c39c7b5a35ec6313d4682a43e /usr/local/bin/tailscaled /usr/local/bin/tailscale /usr/local/bin/ RUN apk del build-dependencies && \ rm -rf /var/cache/apk/* && \ rm -rf /root/.cache/pip && \