From 03215de6c43d8a1fb5d0eec7113b95d5d222e2d6 Mon Sep 17 00:00:00 2001 From: Peter Cai Date: Sat, 18 Feb 2023 14:32:52 -0500 Subject: [PATCH] headscale: uprev to 0.20.0 --- headscale/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/headscale/Dockerfile b/headscale/Dockerfile index 43d559c..d8ca576 100644 --- a/headscale/Dockerfile +++ b/headscale/Dockerfile @@ -1,6 +1,6 @@ # Builder image -FROM docker.io/golang:1.19.0-bullseye AS build -ARG VERSION=v0.17.1 +FROM docker.io/golang:1.19.3-bullseye AS build +ARG VERSION=v0.20.0 ENV GOPATH /go RUN apt-get install -y git && \ @@ -17,7 +17,7 @@ RUN test -e /go/bin/headscale # Production image # Note that we do not use "distroless" because we actually want to have a shell in the image # to run app.sh (in order to perform custom initialization) -FROM docker.io/golang:1.19.0-bullseye +FROM docker.io/golang:1.19.3-bullseye COPY --from=build /go/bin/headscale /bin/headscale ENV TZ UTC