-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDockerfile
23 lines (19 loc) · 1.06 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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/runtime:3.1-buster-slim AS base
WORKDIR /app
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build
WORKDIR /src
COPY ["src/Samples/Sample.RabbitMQ.Consumer/Sample.RabbitMQ.Consumer.csproj", "src/Samples/Sample.RabbitMQ.Consumer/"]
COPY ["src/Samples/Sample.Shared/Sample.Shared.csproj", "src/Samples/Sample.Shared/"]
COPY ["src/EventBus/EventBus.csproj", "src/EventBus/"]
COPY ["src/EventBus.RabbitMQ/EventBus.RabbitMQ.csproj", "src/EventBus.RabbitMQ/"]
RUN dotnet restore "src/Samples/Sample.RabbitMQ.Consumer/Sample.RabbitMQ.Consumer.csproj"
COPY . .
WORKDIR "/src/src/Samples/Sample.RabbitMQ.Consumer"
RUN dotnet build "Sample.RabbitMQ.Consumer.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "Sample.RabbitMQ.Consumer.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "Sample.RabbitMQ.Consumer.dll"]