diff options
author | Systemkern <[email protected]> | 2021-02-28 12:46:30 +0100 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2021-02-28 14:14:06 +0100 |
commit | 5afcae7e0b4c08bc37db6e34ab4cf960558f4b6e (patch) | |
tree | 37f8cf662248e118c9c44a76798da32f15a2f3ec /Dockerfile | |
parent | 60469f429e227631d76d951f2ed92986f0bd92e9 (diff) | |
download | hugo-5afcae7e0b4c08bc37db6e34ab4cf960558f4b6e.tar.gz hugo-5afcae7e0b4c08bc37db6e34ab4cf960558f4b6e.zip |
#8210 Upgrade golang version for Dockerfile
https://github.com/gohugoio/hugo/issues/8210
relates to: #8210
Diffstat (limited to 'Dockerfile')
-rwxr-xr-x | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 75ed38969..473296ad0 100755 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Twitter: https://twitter.com/gohugoio # Website: https://gohugo.io/ -FROM golang:1.15-alpine AS build +FROM golang:1.16-alpine AS build # Optionally set HUGO_BUILD_TAGS to "extended" or "nodeploy" when building like so: # docker build --build-arg HUGO_BUILD_TAGS=extended . |