diff options
author | techknowlogick <techknowlogick@gitea.io> | 2021-12-20 22:11:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-20 22:11:10 -0500 |
commit | d8ae769ddaa46100dc4a21e8af159c6a0c091cd2 (patch) | |
tree | b05b65ad9033134d88199b2f80968423d1f11598 /Dockerfile | |
parent | 7cc7f0ed75218b061a9529b466ba0eb12954a753 (diff) | |
download | gitea-d8ae769ddaa46100dc4a21e8af159c6a0c091cd2.tar.gz gitea-d8ae769ddaa46100dc4a21e8af159c6a0c091cd2.zip |
update docker image to latest go version (#18048)
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 5bf06064a4..e9767402c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ################################### -#Build stage -FROM golang:1.17-alpine3.13 AS build-env +#Build stage - temporarily using techknowlogick image until we upgrade to latest official alpine/go image +FROM techknowlogick/go:1.17-alpine3.13 AS build-env ARG GOPROXY ENV GOPROXY ${GOPROXY:-direct} |