FROM mcr.microsoft.com/dotnet/sdk:6.0-focal-amd64
WORKDIR /app
COPY  ./. /app

RUN dotnet restore
RUN dotnet publish -c Release -f win-x64 -p:PublishSinglefile=true -o /app/out

