2024-02-12 21:53:07 +08:00
|
|
|
# This Dockerfile and the images produced are for testing headscale,
|
|
|
|
# and are in no way endorsed by Headscale's maintainers as an
|
|
|
|
# official nor supported release or distribution.
|
|
|
|
|
2022-03-19 00:05:28 +08:00
|
|
|
FROM golang:latest
|
|
|
|
|
|
|
|
RUN apt-get update \
|
2023-05-02 17:51:30 +08:00
|
|
|
&& apt-get install -y dnsutils git iptables ssh ca-certificates \
|
2022-03-19 00:05:28 +08:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2022-10-26 19:31:30 +08:00
|
|
|
RUN useradd --shell=/bin/bash --create-home ssh-it-user
|
|
|
|
|
2022-03-19 00:05:28 +08:00
|
|
|
RUN git clone https://github.com/tailscale/tailscale.git
|
|
|
|
|
2022-08-16 23:52:59 +08:00
|
|
|
WORKDIR /go/tailscale
|
|
|
|
|
2023-05-02 17:51:30 +08:00
|
|
|
RUN git checkout main \
|
|
|
|
&& sh build_dist.sh tailscale.com/cmd/tailscale \
|
|
|
|
&& sh build_dist.sh tailscale.com/cmd/tailscaled \
|
|
|
|
&& cp tailscale /usr/local/bin/ \
|
|
|
|
&& cp tailscaled /usr/local/bin/
|