diff options
author | techknowlogick <techknowlogick@gitea.io> | 2021-07-15 21:54:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-16 09:54:39 +0800 |
commit | 7b31aae414fe8c4117ffd2d2c284d111e52f700e (patch) | |
tree | 99182eeae5b0b797dd9e2eb096271e0699343e6f /Dockerfile.rootless | |
parent | fdb0e82148136f5fe5fdeba666a6f0a30377b1f7 (diff) | |
download | gitea-7b31aae414fe8c4117ffd2d2c284d111e52f700e.tar.gz gitea-7b31aae414fe8c4117ffd2d2c284d111e52f700e.zip |
revert to use alpine 3.13 (#16451)
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'Dockerfile.rootless')
-rw-r--r-- | Dockerfile.rootless | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile.rootless b/Dockerfile.rootless index d3ba15f109..a0cc20095c 100644 --- a/Dockerfile.rootless +++ b/Dockerfile.rootless @@ -1,7 +1,7 @@ ################################### #Build stage -FROM golang:1.16-alpine3.14 AS build-env +FROM golang:1.16-alpine3.13 AS build-env ARG GOPROXY ENV GOPROXY ${GOPROXY:-direct} @@ -25,7 +25,7 @@ RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \ # Begin env-to-ini build RUN go build contrib/environment-to-ini/environment-to-ini.go -FROM alpine:3.14 +FROM alpine:3.13 LABEL maintainer="maintainers@gitea.io" EXPOSE 2222 3000 |