chore(deps): update all docker tags

This commit is contained in:
Renovate Bot 2020-08-31 08:25:27 +00:00
parent 55b55bf783
commit 387fa16a8d
No known key found for this signature in database
GPG Key ID: 81C63AE1C224182B
1 changed files with 2 additions and 2 deletions

View File

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