From 83e72ec57d18227a8ddb0d3a06c8e657bc352549 Mon Sep 17 00:00:00 2001 From: "Alessandro (Ale) Segala" <43508+ItalyPaleAle@users.noreply.github.com> Date: Tue, 9 Nov 2021 16:20:58 +0000 Subject: [PATCH] Allow running headscale without leading / --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8a20142..58c3a38 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,4 @@ +# Builder image FROM golang:1.17.1-bullseye AS build ENV GOPATH /go WORKDIR /go/src/headscale @@ -10,10 +11,12 @@ COPY . . RUN go install -a -ldflags="-extldflags=-static" -tags netgo,sqlite_omit_load_extension ./cmd/headscale RUN test -e /go/bin/headscale +# Production image FROM gcr.io/distroless/base-debian11 COPY --from=build /go/bin/headscale /headscale ENV TZ UTC +ENV PATH / EXPOSE 8080/tcp -CMD ["/headscale"] +CMD ["headscale"]