Fluent-networks.tailscale-m.../Dockerfile

64 lines
1.9 KiB
Text
Raw Normal View History

2021-10-20 20:09:57 +10:00
# Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
############################################################################
#
# WARNING: Tailscale is not yet officially supported in Docker,
# Kubernetes, etc.
#
# It might work, but we don't regularly test it, and it's not as polished as
# our currently supported platforms. This is provided for people who know
# how Tailscale works and what they're doing.
#
# Our tracking bug for officially support container use cases is:
# https://github.com/tailscale/tailscale/issues/504
#
# Also, see the various bugs tagged "containers":
# https://github.com/tailscale/tailscale/labels/containers
#
############################################################################
FROM golang:1.18-alpine AS build-env
2021-10-20 20:09:57 +10:00
WORKDIR /go/src/tailscale
COPY tailscale/go.mod tailscale/go.sum ./
RUN go mod download
COPY tailscale/. .
# see build.sh
ARG VERSION_LONG=""
ENV VERSION_LONG=$VERSION_LONG
ARG VERSION_SHORT=""
ENV VERSION_SHORT=$VERSION_SHORT
ARG VERSION_GIT_HASH=""
ENV VERSION_GIT_HASH=$VERSION_GIT_HASH
ARG TARGETARCH
2021-10-20 20:09:57 +10:00
RUN GOARCH=$TARGETARCH go install -ldflags="\
2021-10-20 20:09:57 +10:00
-X tailscale.com/version.Long=$VERSION_LONG \
-X tailscale.com/version.Short=$VERSION_SHORT \
-X tailscale.com/version.GitCommit=$VERSION_GIT_HASH" \
-v ./cmd/tailscale ./cmd/tailscaled
2021-10-20 20:09:57 +10:00
FROM ghcr.io/tailscale/alpine-base:3.14
2021-10-20 20:09:57 +10:00
# Set password
2021-10-20 20:09:57 +10:00
ARG TAILSCALE_PASSWORD="Pm36g58CzaLK"
RUN echo "root:$TAILSCALE_PASSWORD" | chpasswd
2021-10-20 20:09:57 +10:00
RUN apk add --no-cache ca-certificates iptables iproute2 bash sudo openssh
RUN ssh-keygen -f /etc/ssh/ssh_host_rsa_key -N '' -t rsa
RUN ssh-keygen -f /etc/ssh/ssh_host_dsa_key -N '' -t dsa
COPY --from=build-env /go/bin/* /usr/local/bin/
ADD sshd_config /etc/ssh/
2021-10-20 20:09:57 +10:00
EXPOSE 22
ADD tailscale.sh /usr/local/bin
CMD ["/usr/local/bin/tailscale.sh"]