skip to Main Content

Why is docker not completely deleting my file? – CentOS

I am trying to build using: FROM mcr.microsoft.com/dotnet/core/sdk:2.1 AS builder COPY pythonnet/src/ pythonnet/src WORKDIR /pythonnet/src/runtime RUN dotnet build -f netstandard2.0 -p:DefineConstants="MONO_LINUX;XPLAT;PYTHON3;PYTHON37;UCS4;NETSTANDARD" Python.Runtime.15.csproj # copy myApp csproj and restore COPY src/myApp/*.csproj /src/myApp/ WORKDIR /src/myApp RUN dotnet restore # now copy everything…

VIEW QUESTION
Back To Top
Search