From 7d4c2d5fea21042e0e299c435967db67ad4e759f Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 15 Aug 2024 22:00:48 +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..3c12396e48506 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.18.8 LABEL maintainer="maintainers@gitea.io" EXPOSE 22 3000