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

25 lines
562 B
Docker
Raw Normal View History

2022-01-12 13:29:59 +01:00
# Builder image
2022-09-03 12:21:35 +02:00
FROM docker.io/golang:1.19.0-alpine AS build
ARG VERSION=dev
2022-01-12 13:29:59 +01:00
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 . .
2022-08-05 00:31:39 +02:00
RUN CGO_ENABLED=0 GOOS=linux go install -ldflags="-s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=$VERSION" -a ./cmd/headscale
RUN strip /go/bin/headscale
2022-01-12 13:29:59 +01:00
RUN test -e /go/bin/headscale
# Production image
FROM docker.io/alpine:latest
2022-01-12 13:29:59 +01:00
COPY --from=build /go/bin/headscale /bin/headscale
ENV TZ UTC
EXPOSE 8080/tcp
CMD ["headscale"]