2024-02-12 14:53:07 +01:00
# 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.
2024-04-24 07:44:07 +02:00
FROM docker.io/golang:1.22-bookworm
2022-06-18 11:36:09 +02:00
ARG VERSION=dev
2021-11-12 02:20:46 +00:00
ENV GOPATH /go
WORKDIR /go/src/headscale
2023-07-17 11:13:24 +02:00
RUN apt-get update \
2023-11-23 08:31:33 +01:00
&& apt-get install --no-install-recommends --yes less jq \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get clean
2023-05-10 13:52:44 +00:00
RUN mkdir -p /var/run/headscale
2024-04-24 07:44:07 +02:00
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 && test -e /go/bin/headscale
2021-11-12 02:20:46 +00:00
# Need to reset the entrypoint or everything will run as a busybox script
ENTRYPOINT []
EXPOSE 8080/tcp
CMD ["headscale"]