We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fec3e9d commit 9bbac21Copy full SHA for 9bbac21
Rsk.Samples.IdentityServer.AdminUiIntegration/Dockerfile
@@ -13,6 +13,12 @@ RUN dotnet publish -c Release -o out
13
# Stage 2 - Runtime
14
FROM mcr.microsoft.com/dotnet/aspnet:6.0-alpine AS runtime
15
16
+# Ensuring latest openssl is installed as the one in base
17
+# is out of date and vulnerable
18
+RUN apk update && \
19
+ apk upgrade && \
20
+ apk upgrade openssl
21
+
22
ENV ASPNETCORE_ENVIRONMENT Production
23
ENV ASPNETCORE_HTTP_PORT=5003
24
ENV ASPNETCORE_URLS http://*:5003
0 commit comments