1C.Gateway/Dockerfile
2021-05-18 10:08:21 +03:00

15 lines
301 B
Docker

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