From 0e714c54da3343048cf03f6f0a4bdf96ee5bc8cb Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 28 Jan 2024 01:05:57 +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..f91767ab0cea8 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.6 LABEL maintainer="maintainers@gitea.io" EXPOSE 22 3000