From 061a8e7bb999f5f5e2e77aad42909703e2c535ea Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Wed, 7 Jul 2021 15:43:00 -0400 Subject: [PATCH] Alpine 3.14 released (#16170) Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: zeripath --- .drone.yml | 2 +- Dockerfile | 4 ++-- Dockerfile.rootless | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.drone.yml b/.drone.yml index c338f5ee52..8723f696f5 100644 --- a/.drone.yml +++ b/.drone.yml @@ -404,7 +404,7 @@ steps: - name: update pull: default - image: alpine:3.13 + image: alpine:3.14 commands: - ./build/update-locales.sh diff --git a/Dockerfile b/Dockerfile index 3445544a94..9960e5b1e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ################################### #Build stage -FROM golang:1.16-alpine3.13 AS build-env +FROM golang:1.16-alpine3.14 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.13 +FROM alpine:3.14 LABEL maintainer="maintainers@gitea.io" EXPOSE 22 3000 diff --git a/Dockerfile.rootless b/Dockerfile.rootless index 43ae308e3a..70f6540112 100644 --- a/Dockerfile.rootless +++ b/Dockerfile.rootless @@ -1,7 +1,7 @@ ################################### #Build stage -FROM golang:1.16-alpine3.13 AS build-env +FROM golang:1.16-alpine3.14 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.13 +FROM alpine:3.14 LABEL maintainer="maintainers@gitea.io" EXPOSE 2222 3000