We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f463e62 + e864fb4 commit af8eecaCopy full SHA for af8eeca
Dockerfile
@@ -4,7 +4,8 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0.402-alpine3.19-amd64 AS init
4
ENV WORKDIR=/app
5
WORKDIR ${WORKDIR}
6
7
-RUN apk add --update --no-cache make
+RUN apk add --update --no-cache make \
8
+ && apk upgrade --no-cache # Avoid some CVE reports updating basic packages.
9
10
###############################################################################
11
FROM init AS base
@@ -105,7 +106,8 @@ CMD ["make", "test"]
105
106
##
107
FROM mcr.microsoft.com/dotnet/runtime:8.0.8-alpine3.19-amd64 AS production
108
109
110
111
112
ENV LOG_LEVEL=info
113
ENV BRUTEFORCE=false
0 commit comments