headscale/Dockerfile.debug

24 lines
507 B
Docker
Raw Normal View History

2021-11-12 10:20:46 +08:00
# Builder image
FROM docker.io/golang:1.17.8-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 . .
RUN GGO_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"]