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

23 lines
460 B
Docker
Raw Normal View History

# Builder image
2021-09-13 20:03:03 +02:00
FROM golang:1.17.1-bullseye AS build
ENV GOPATH /go
2021-10-27 08:40:39 +02:00
WORKDIR /go/src/headscale
2021-10-26 23:35:18 +02:00
COPY go.mod go.sum /go/src/headscale/
RUN go mod download
2021-10-26 23:35:18 +02:00
COPY . .
RUN go install -a -ldflags="-extldflags=-static" -tags netgo,sqlite_omit_load_extension ./cmd/headscale
RUN test -e /go/bin/headscale
# Production image
2021-11-07 00:19:56 +01:00
FROM gcr.io/distroless/base-debian11
2021-11-07 00:18:13 +01:00
COPY --from=build /go/bin/headscale /headscale
ENV TZ UTC
ENV PATH /
EXPOSE 8080/tcp
CMD ["headscale"]