1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-10-17 20:05:55 +02:00
juanfont.headscale/Dockerfile.debug

34 lines
934 B
Docker
Raw Normal View History

# This Dockerfile and the images produced are for testing headscale,
# and are in no way endorsed by Headscale's maintainers as an
# official nor supported release or distribution.
FROM docker.io/golang:1.22-bookworm AS build
ARG VERSION=dev
2021-11-12 03:20:46 +01:00
ENV GOPATH /go
WORKDIR /go/src/headscale
COPY go.mod go.sum /go/src/headscale/
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go install -ldflags="-s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=$VERSION" -a ./cmd/headscale
2021-11-12 03:20:46 +01:00
RUN test -e /go/bin/headscale
# Debug image
FROM docker.io/golang:1.22-bookworm
2021-11-12 03:20:46 +01:00
COPY --from=build /go/bin/headscale /bin/headscale
2021-11-12 03:20:46 +01:00
ENV TZ UTC
RUN apt-get update \
&& apt-get install --no-install-recommends --yes less jq \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get clean
2023-05-10 15:52:44 +02:00
RUN mkdir -p /var/run/headscale
2021-11-12 03:20:46 +01:00
# Need to reset the entrypoint or everything will run as a busybox script
ENTRYPOINT []
EXPOSE 8080/tcp
CMD ["headscale"]