headscale/Dockerfile

24 lines
560 B
Docker
Raw Normal View History

# Builder image
2022-09-03 18:21:35 +08:00
FROM docker.io/golang:1.19.0-bullseye AS build
ARG VERSION=dev
ENV GOPATH /go
2021-10-27 14:40:39 +08:00
WORKDIR /go/src/headscale
2021-10-27 05:35:18 +08:00
COPY go.mod go.sum /go/src/headscale/
RUN go mod download
2021-10-27 05:35:18 +08:00
COPY . .
2022-08-05 06:31:39 +08:00
2022-11-04 18:26:33 +08:00
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
2022-08-05 06:31:39 +08:00
RUN strip /go/bin/headscale
RUN test -e /go/bin/headscale
# Production image
2021-11-07 07:19:56 +08:00
FROM gcr.io/distroless/base-debian11
COPY --from=build /go/bin/headscale /bin/headscale
ENV TZ UTC
EXPOSE 8080/tcp
CMD ["headscale"]