From 387fa16a8d78b589673bef46e4e3373d7275eab6 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 31 Aug 2020 08:25:27 +0000 Subject: [PATCH] chore(deps): update all docker tags --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 00bedbc..771a2a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # build -FROM golang:1.14-alpine as builder +FROM golang:1.15-alpine as builder RUN apk add --no-cache git gcc musl-dev make WORKDIR /go/src/github.com/moul/gotty-client COPY go.* ./ @@ -8,6 +8,6 @@ COPY . ./ RUN make install # minimal runtime -FROM alpine:3.11 +FROM alpine:3.12 COPY --from=builder /go/bin/gotty-client /bin/ ENTRYPOINT ["/bin/gotty-client"]