headscale/Dockerfile

23 lines
611 B
Docker
Raw Normal View History

# Builder image
2022-07-06 15:23:01 -04:00
FROM --platform=$BUILDPLATFORM docker.io/golang:1.18.0-bullseye AS build
ARG VERSION=dev
ENV GOPATH /go
2021-10-27 02:40:39 -04:00
WORKDIR /go/src/headscale
2021-10-26 17:35:18 -04:00
COPY go.mod go.sum /go/src/headscale/
RUN go mod download
2021-10-26 17:35:18 -04:00
COPY . .
2022-07-06 15:23:01 -04:00
ARG TARGETOS TARGETARCH
2022-07-06 17:29:34 -04:00
RUN CGO_ENABLED=0 GOOS=$TARGETOS GOARCH=$TARGETARCH go build -o /go/bin/headscale -ldflags="-s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=$VERSION" -a ./cmd/headscale
RUN test -e /go/bin/headscale
# Production image
2021-11-06 19:19:56 -04:00
FROM gcr.io/distroless/base-debian11
COPY --from=build /go/bin/headscale /bin/headscale
ENV TZ UTC
EXPOSE 8080/tcp
CMD ["headscale"]