headscale/Dockerfile.debug

24 lines
507 B
Docker
Raw Normal View History

2021-11-12 10:20:46 +08:00
# Builder image
2022-03-18 01:43:11 +08:00
FROM docker.io/golang:1.18.0-bullseye AS build
2021-11-12 10:20:46 +08:00
ENV GOPATH /go
WORKDIR /go/src/headscale
COPY go.mod go.sum /go/src/headscale/
RUN go mod download
COPY . .
2022-05-28 23:18:34 +08:00
RUN CGO_ENABLED=0 GOOS=linux go install -a ./cmd/headscale
2021-11-12 10:20:46 +08:00
RUN test -e /go/bin/headscale
# Debug image
FROM gcr.io/distroless/base-debian11:debug
COPY --from=build /go/bin/headscale /bin/headscale
2021-11-12 10:20:46 +08:00
ENV TZ UTC
# Need to reset the entrypoint or everything will run as a busybox script
ENTRYPOINT []
EXPOSE 8080/tcp
CMD ["headscale"]