Add version support to integration support

This commit adds a list of tailscale versions to use in the integration
test. An equal distribution of versions will be used across the clients.
This commit is contained in:
Kristoffer Dalby
2021-09-20 19:23:18 +01:00
parent bf26e37e0e
commit d68d201722
2 changed files with 51 additions and 30 deletions

View File

@@ -1,9 +1,11 @@
FROM ubuntu:latest
ARG TAILSCALE_VERSION=now
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 \
&& apt-get install -y tailscale=${TAILSCALE_VERSION} \
&& rm -rf /var/lib/apt/lists/*