docker: bump golang base image to 1.16.0-alpine

This commit is contained in:
Oliver Gugger 2021-02-24 09:09:58 +01:00
parent 17e0b2fb1a
commit a6d79b6ab3
No known key found for this signature in database
GPG key ID: 8E4256593F177720
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@ RUN apk add --no-cache --update alpine-sdk \
# The first stage is already done and all static assets should now be generated
# in the app/build sub directory.
FROM golang:1.15.7-alpine as golangbuilder
FROM golang:1.16.0-alpine as golangbuilder
# Instead of checking out from git again, we just copy the whole working
# directory of the previous stage that includes the generated static assets.

View file

@ -10,7 +10,7 @@ RUN cd /go/src/github.com/lightninglabs/lightning-terminal/app \
# The first stage is already done and all static assets should now be generated
# in the app/build sub directory.
FROM golang:1.15.7-alpine as golangbuilder
FROM golang:1.16.0-alpine as golangbuilder
# Instead of checking out from git again, we just copy the whole working
# directory of the previous stage that includes the generated static assets.