Allow running headscale without leading /

This commit is contained in:
Alessandro (Ale) Segala 2021-11-09 16:20:58 +00:00 committed by GitHub
parent 67953bfe2f
commit 83e72ec57d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"]