2021-08-08 16:43:06 +00:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
2022-03-20 11:33:41 +00:00
|
|
|
ARG TAILSCALE_VERSION=*
|
|
|
|
ARG TAILSCALE_CHANNEL=stable
|
2021-09-20 18:23:18 +00:00
|
|
|
|
2021-08-08 16:43:06 +00:00
|
|
|
RUN apt-get update \
|
2022-10-26 11:31:30 +00:00
|
|
|
&& apt-get install -y gnupg curl ssh \
|
2022-03-18 16:05:28 +00:00
|
|
|
&& curl -fsSL https://pkgs.tailscale.com/${TAILSCALE_CHANNEL}/ubuntu/focal.gpg | apt-key add - \
|
|
|
|
&& curl -fsSL https://pkgs.tailscale.com/${TAILSCALE_CHANNEL}/ubuntu/focal.list | tee /etc/apt/sources.list.d/tailscale.list \
|
2021-08-08 16:43:06 +00:00
|
|
|
&& apt-get update \
|
2022-03-05 18:34:06 +00:00
|
|
|
&& apt-get install -y ca-certificates tailscale=${TAILSCALE_VERSION} dnsutils \
|
2021-08-08 16:43:06 +00:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2022-03-05 18:34:06 +00:00
|
|
|
|
2022-10-26 11:31:30 +00:00
|
|
|
RUN adduser --shell=/bin/bash ssh-it-user
|
|
|
|
|
2022-03-05 18:34:06 +00:00
|
|
|
ADD integration_test/etc_embedded_derp/tls/server.crt /usr/local/share/ca-certificates/
|
2022-11-08 15:09:19 +00:00
|
|
|
RUN chmod 644 /usr/local/share/ca-certificates/server.crt
|
2022-03-05 18:34:06 +00:00
|
|
|
|
2022-03-06 19:42:27 +00:00
|
|
|
RUN update-ca-certificates
|