update usage example

This commit is contained in:
David Claeys 2025-04-03 16:41:29 +02:00
parent 60c35f0613
commit b5a7c42226

View File

@ -21,7 +21,7 @@ The following is just an example of how your Dockerfile could look like.
```sh ```sh
# Password for the certificate # Password for the certificate
# this image contains the entire .NET SDK and is ideal for creation the build # 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 FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine-amd64 AS build-env
WORKDIR /App WORKDIR /App
COPY . ./ COPY . ./
# Restore dependencies for your application # Restore dependencies for your application