From f973aef80c53aba07113a0f0592add4903b16fe7 Mon Sep 17 00:00:00 2001 From: Kristoffer Dalby Date: Sun, 8 Aug 2021 17:43:06 +0100 Subject: [PATCH] Add Dockerfile to build tailscale docker image for integration tests --- Dockerfile.tailscale | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile.tailscale diff --git a/Dockerfile.tailscale b/Dockerfile.tailscale new file mode 100644 index 00000000..c6830f8a --- /dev/null +++ b/Dockerfile.tailscale @@ -0,0 +1,9 @@ +FROM ubuntu:latest + +RUN apt-get update \ + && apt-get install -y gnupg curl \ + && curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/focal.gpg | apt-key add - \ + && curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/focal.list | tee /etc/apt/sources.list.d/tailscale.list \ + && apt-get update \ + && apt-get install -y tailscale \ + && rm -rf /var/lib/apt/lists/*