mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-23 18:15:26 +00:00
d68d201722
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.
12 lines
429 B
Docker
12 lines
429 B
Docker
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=${TAILSCALE_VERSION} \
|
|
&& rm -rf /var/lib/apt/lists/*
|