forked from juanfont/headscale
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
26623d7
commit 1b6bad0
Showing
2 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Builder image | ||
FROM golang:1.17.1-alpine AS build | ||
ENV GOPATH /go | ||
WORKDIR /go/src/headscale | ||
|
||
COPY go.mod go.sum /go/src/headscale/ | ||
RUN apk add gcc musl-dev | ||
RUN go mod download | ||
|
||
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 alpine:latest | ||
|
||
COPY --from=build /go/bin/headscale /bin/headscale | ||
ENV TZ UTC | ||
|
||
EXPOSE 8080/tcp | ||
CMD ["headscale"] |