aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.rootless
diff options
context:
space:
mode:
authortechknowlogick2021-01-19 23:21:01 -0500
committerGitHub2021-01-20 05:21:01 +0100
commitb708968694841cb1df6038eaabb880d0fe59a7f4 (patch)
tree77fb366c8fb0332710ff74192ac8f69fe30a44fc /Dockerfile.rootless
parent135b0e502d93c591b21083794dc100b53e520477 (diff)
upgrade to alpine 3.13 (#14343)
Diffstat (limited to 'Dockerfile.rootless')
-rw-r--r--Dockerfile.rootless4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile.rootless b/Dockerfile.rootless
index 7dbd8b021..d20d4d8b8 100644
--- a/Dockerfile.rootless
+++ b/Dockerfile.rootless
@@ -1,7 +1,7 @@
###################################
#Build stage
-FROM golang:1.15-alpine3.12 AS build-env
+FROM golang:1.15-alpine3.13 AS build-env
ARG GOPROXY
ENV GOPROXY ${GOPROXY:-direct}
@@ -22,7 +22,7 @@ WORKDIR ${GOPATH}/src/code.gitea.io/gitea
RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \
&& make clean-all build
-FROM alpine:3.12
+FROM alpine:3.13
LABEL maintainer="maintainers@gitea.io"
EXPOSE 2222 3000