25 lines
658 B
Docker
25 lines
658 B
Docker
FROM mcr.microsoft.com/dotnet/aspnet:3.1-alpine AS base
|
|
WORKDIR /app
|
|
EXPOSE 5000
|
|
|
|
FROM mcr.microsoft.com/dotnet/sdk:3.1-alpine AS build
|
|
WORKDIR /src
|
|
COPY ["_1C.Gateway/_1C.Gateway.csproj", "_1C.Gateway/"]
|
|
|
|
COPY ./NuGet.Config /nuget.config
|
|
COPY ./evoleasing_25.crt /etc/ssl/certs
|
|
RUN update-ca-certificates
|
|
|
|
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"]
|