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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -404,7 +404,7 @@ steps:
- name: update
pull: default
image: alpine:3.12
image: alpine:3.13
commands:
- ./build/update-locales.sh

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

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 2222 3000