From e8aaf57e10e39c7b629c42cc2c0610545758e01f Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Tue, 18 May 2021 10:08:21 +0300 Subject: [PATCH] edit dockerfile --- Dockerfile | 15 +++++++++++++++ _1C.Gateway/Dockerfile | 21 --------------------- 2 files changed, 15 insertions(+), 21 deletions(-) create mode 100644 Dockerfile delete mode 100644 _1C.Gateway/Dockerfile 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