From c78ff900b54ff829991f0288b1a0c0af4b159211 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 20 Feb 2025 00:32:54 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE311-ZLIB-2977081 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bc8ac4f4bea10..8b6e37a5fe33f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ WORKDIR ${GOPATH}/src/code.gitea.io/gitea RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \ && make clean build -FROM alpine:3.11 +FROM alpine:3.21.3 LABEL maintainer="maintainers@gitea.io" EXPOSE 22 3000