Last active
December 8, 2020 06:24
.DOTNETCORE docker build
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/core/sdk:3.1 AS build-env | |
WORKDIR /src | |
COPY myapi/*.csproj ./src/myapi/ | |
COPY myapi.sln NuGet.config ./src | |
RUN dotnet restore ./src/myapi/*.csproj | |
COPY . ./ | |
RUN dotnet publish ./src/myapi/myapi.csproj -c release -o /output |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment