update readme

This commit is contained in:
David Claeys 2025-04-01 12:49:33 +02:00
parent 23099bd7e6
commit 9f61dd9e72

View File

@ -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