1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-11 05:55:29 +00:00

upgrade to alpine 3.13 (#14343)

This commit is contained in:
techknowlogick
2021-01-19 23:21:01 -05:00
committed by GitHub
parent 135b0e502d
commit b708968694
3 changed files with 5 additions and 5 deletions

View File

@ -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 22 3000