mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-10 09:02:30 +08:00
4c12c02e71
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
30 lines
714 B
Docker
30 lines
714 B
Docker
# Builder image
|
|
FROM docker.io/golang:1.21-bookworm AS build
|
|
ARG VERSION=dev
|
|
ENV GOPATH /go
|
|
WORKDIR /go/src/headscale
|
|
|
|
COPY go.mod go.sum /go/src/headscale/
|
|
RUN go mod download
|
|
|
|
COPY . .
|
|
|
|
RUN CGO_ENABLED=0 GOOS=linux go install -tags ts2019 -ldflags="-s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=$VERSION" -a ./cmd/headscale
|
|
RUN strip /go/bin/headscale
|
|
RUN test -e /go/bin/headscale
|
|
|
|
# Production image
|
|
FROM docker.io/debian:bookworm-slim
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y ca-certificates \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& apt-get clean
|
|
|
|
COPY --from=build /go/bin/headscale /bin/headscale
|
|
ENV TZ UTC
|
|
|
|
RUN mkdir -p /var/run/headscale
|
|
|
|
EXPOSE 8080/tcp
|
|
CMD ["headscale"]
|