Skip to content

Commit

Permalink
dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemS00 authored and SharafeevRavil committed Nov 24, 2021
1 parent 79563eb commit 520103e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build-api
WORKDIR /app

EXPOSE 80

COPY DocumentService/*.csproj ./DocumentService/

WORKDIR /app/DocumentService
RUN dotnet restore

WORKDIR /app
COPY DocumentService/ ./DocumentService/

WORKDIR /app/DocumentService
RUN dotnet publish /property:PublishWithAspNetCoreTargetManifest=false -c Release -o out


FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS final
WORKDIR /app

COPY --from=build-api /app/DocumentService/out ./
ENTRYPOINT ["dotnet", "DocumentService.dll"]

0 comments on commit 520103e

Please sign in to comment.