diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..492717d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ + +# Stage 1 +FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build +WORKDIR /build +COPY . . +RUN dotnet restore +RUN dotnet publish -c Release -o /app +# Stage 2 +FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 AS final +WORKDIR /app +COPY --from=build /app . + +EXPOSE 1000 + +ENTRYPOINT ["dotnet", "_1C.Gateway.dll"] \ No newline at end of file diff --git a/_1C.Gateway/Dockerfile b/_1C.Gateway/Dockerfile deleted file mode 100644 index 029d120..0000000 --- a/_1C.Gateway/Dockerfile +++ /dev/null @@ -1,21 +0,0 @@ -#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. - -FROM mcr.microsoft.com/dotnet/aspnet:3.1 AS base -WORKDIR /app -EXPOSE 80 - -FROM mcr.microsoft.com/dotnet/sdk:3.1 AS build -WORKDIR /src -COPY ["_1C.Gateway/_1C.Gateway.csproj", "_1C.Gateway/"] -RUN dotnet restore "_1C.Gateway/_1C.Gateway.csproj" -COPY . . -WORKDIR "/src/_1C.Gateway" -RUN dotnet build "_1C.Gateway.csproj" -c Release -o /app/build - -FROM build AS publish -RUN dotnet publish "_1C.Gateway.csproj" -c Release -o /app/publish - -FROM base AS final -WORKDIR /app -COPY --from=publish /app/publish . -ENTRYPOINT ["dotnet", "_1C.Gateway.dll"] \ No newline at end of file