From 9f61dd9e720e448f721a26be68d7e0618cdbc9f4 Mon Sep 17 00:00:00 2001 From: David Claeys Date: Tue, 1 Apr 2025 12:49:33 +0200 Subject: [PATCH] update readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e892c53..98f72aa 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Among other things these tweaks are included : Since this is just a base image, some additional setup is needed. The following is just an example of how your Dockerfile could look like. -`` +```sh # Password for the certificate # this image contains the entire .NET SDK and is ideal for creation the build FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine-amd64 AS build-env @@ -47,7 +47,7 @@ WORKDIR /App COPY --from=build-env /App/out . # entrypoint for image ENTRYPOINT ["dotnet", "test.dll"] -`` +``` ### Security implications