Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0.402-alpine3.19-amd64 AS init
ENV WORKDIR=/app
WORKDIR ${WORKDIR}

RUN apk add --update --no-cache make
RUN apk add --update --no-cache make \
&& apk upgrade --no-cache # Avoid some CVE reports updating basic packages.

###############################################################################
FROM init AS base
Expand Down Expand Up @@ -105,7 +106,8 @@ CMD ["make", "test"]
##
FROM mcr.microsoft.com/dotnet/runtime:8.0.8-alpine3.19-amd64 AS production

RUN apk add --update --no-cache make
RUN apk add --update --no-cache make \
&& apk upgrade --no-cache # Avoid some CVE reports updating basic packages.

ENV LOG_LEVEL=info
ENV BRUTEFORCE=false
Expand Down
Loading