Add docker alpine image

This commit is contained in:
Artem Klevtsov 2022-01-12 19:29:59 +07:00
parent 26623d794b
commit 1b6bad0b63
No known key found for this signature in database
GPG key ID: 6544B0178C1CB12D
2 changed files with 86 additions and 0 deletions

22
Dockerfile.alpine Normal file
View file

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