-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDockerfile
More file actions
20 lines (17 loc) · 680 Bytes
/
Copy pathDockerfile
File metadata and controls
20 lines (17 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS base
WORKDIR /app
EXPOSE 80
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build
WORKDIR /src
COPY ["Journal-Limpet/Journal-Limpet.csproj", "Journal-Limpet/"]
COPY ["Journal-Limpet.Shared/Journal-Limpet.Shared.csproj", "Journal-Limpet.Shared/"]
RUN dotnet restore "Journal-Limpet/Journal-Limpet.csproj"
COPY . .
WORKDIR "/src/Journal-Limpet"
RUN dotnet build "Journal-Limpet.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "Journal-Limpet.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "Journal-Limpet.dll"]