headscale/Dockerfile.debug

25 lines
614 B
Docker
Raw Permalink Normal View History

2021-11-12 10:20:46 +08:00
# Builder image
FROM docker.io/golang:1.19-bullseye AS build
ARG VERSION=dev
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-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
2021-11-12 10:20:46 +08:00
RUN test -e /go/bin/headscale
# Debug image
FROM docker.io/golang:1.19.0-bullseye
2021-11-12 10:20:46 +08:00
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"]