-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
22 lines (18 loc) · 818 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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/core/aspnet:2.2-stretch-slim AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443
FROM mcr.microsoft.com/dotnet/core/sdk:2.2-stretch AS build
WORKDIR /src
COPY ["Services/Community/Communities.Api/Community.Api.csproj", "Services/Community/Communities.Api/"]
RUN dotnet restore "Services/Community/Communities.Api/Community.Api.csproj"
COPY . .
WORKDIR "/src/Services/Community/Communities.Api"
RUN dotnet build "Community.Api.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "Community.Api.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "Community.Api.dll"]