You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
354 B
17 lines
354 B
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build-env
|
|
WORKDIR /MCTG
|
|
|
|
ENV DOTNET_EnableDiagnostics=0
|
|
|
|
COPY . ./
|
|
|
|
RUN dotnet restore CI-CD.slnf
|
|
RUN dotnet publish CI-CD.slnf -c Release -o out --no-restore
|
|
|
|
|
|
# Build runtime image
|
|
FROM mcr.microsoft.com/dotnet/runtime:7.0
|
|
WORKDIR /MCTG
|
|
COPY --from=build-env /MCTG/out .
|
|
ENTRYPOINT ["dotnet", "ConsoleApp.dll"]
|