mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-23 18:15:26 +00:00
Using distroless base image for Docker
This commit is contained in:
parent
74f0d08f50
commit
3720da6386
13
Dockerfile
13
Dockerfile
@ -1,5 +1,3 @@
|
|||||||
FROM bufbuild/buf:1.0.0-rc6 as buf
|
|
||||||
|
|
||||||
FROM golang:1.17.1-bullseye AS build
|
FROM golang:1.17.1-bullseye AS build
|
||||||
ENV GOPATH /go
|
ENV GOPATH /go
|
||||||
WORKDIR /go/src/headscale
|
WORKDIR /go/src/headscale
|
||||||
@ -12,15 +10,10 @@ COPY . .
|
|||||||
RUN go install -a -ldflags="-extldflags=-static" -tags netgo,sqlite_omit_load_extension ./cmd/headscale
|
RUN go install -a -ldflags="-extldflags=-static" -tags netgo,sqlite_omit_load_extension ./cmd/headscale
|
||||||
RUN test -e /go/bin/headscale
|
RUN test -e /go/bin/headscale
|
||||||
|
|
||||||
FROM ubuntu:20.04
|
FROM gcr.io/distroless/base
|
||||||
|
|
||||||
RUN apt-get update \
|
COPY --from=build /go/bin/headscale /headscale
|
||||||
&& apt-get install -y ca-certificates \
|
|
||||||
&& update-ca-certificates \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
COPY --from=build /go/bin/headscale /usr/local/bin/headscale
|
|
||||||
ENV TZ UTC
|
ENV TZ UTC
|
||||||
|
|
||||||
EXPOSE 8080/tcp
|
EXPOSE 8080/tcp
|
||||||
CMD ["headscale"]
|
CMD ["/headscale"]
|
||||||
|
Loading…
Reference in New Issue
Block a user