This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM mcr.microsoft.com/dotnet/sdk:6.0-alpine AS publish | |
WORKDIR /src | |
COPY SampleProject.csproj ./ | |
RUN dotnet restore "./SampleProject.csproj" --runtime alpine-x64 | |
COPY . . | |
RUN dotnet publish "SampleProject.csproj" -c Release -o /app/publish \ | |
--no-restore \ | |
--runtime alpine-x64 \ | |
--self-contained true \ | |
/p:PublishTrimmed=true \ |