21 lines
673 B
Docker
21 lines
673 B
Docker
#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"] |