diff options
author | Daniel Sutton <[email protected]> | 2020-10-12 21:51:08 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-10-12 22:51:08 +0200 |
commit | f5ea359dd34bf59a2944f1d9667838202af13c93 (patch) | |
tree | 7d88b79886403a8b8d19af6855c570f77af9814d | |
parent | 78b26d538c716d463b30c23de7df5eaa4d5504fd (diff) | |
download | hugo-f5ea359dd34bf59a2944f1d9667838202af13c93.tar.gz hugo-f5ea359dd34bf59a2944f1d9667838202af13c93.zip |
docker: Update to Go 1.15 and Alpine 3.12
-rwxr-xr-x | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 0689f3c0e..528c12e3b 100755 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Twitter: https://twitter.com/gohugoio # Website: https://gohugo.io/ -FROM golang:1.13-alpine AS build +FROM golang:1.15-alpine AS build # Optionally set HUGO_BUILD_TAGS to "extended" when building like so: # docker build --build-arg HUGO_BUILD_TAGS=extended . @@ -26,7 +26,7 @@ RUN mage hugo && mage install # --- -FROM alpine:3.11 +FROM alpine:3.12 COPY --from=build /go/bin/hugo /usr/bin/hugo |