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