edit dockerfile

This commit is contained in:
vchikalkin 2021-05-18 10:08:21 +03:00
parent c6b934f714
commit e8aaf57e10
2 changed files with 15 additions and 21 deletions

15
Dockerfile Normal file
View File

@ -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"]

View File

@ -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"]