headscale/Dockerfile

23 lines
446 B
Docker
Raw Normal View History

# Builder image
2022-03-17 17:43:11 +00:00
FROM docker.io/golang:1.18.0-bullseye AS build
ENV GOPATH /go
2021-10-27 06:40:39 +00:00
WORKDIR /go/src/headscale
2021-10-26 21:35:18 +00:00
COPY go.mod go.sum /go/src/headscale/
RUN go mod download
2021-10-26 21:35:18 +00:00
COPY . .
2022-05-28 15:18:34 +00:00
RUN CGO_ENABLED=0 GOOS=linux go install -a ./cmd/headscale
2022-01-14 08:19:16 +00:00
RUN strip /go/bin/headscale
RUN test -e /go/bin/headscale
# Production image
2021-11-06 23:19:56 +00:00
FROM gcr.io/distroless/base-debian11
COPY --from=build /go/bin/headscale /bin/headscale
ENV TZ UTC
EXPOSE 8080/tcp
CMD ["headscale"]