19 lines
1.0 KiB
Docker
19 lines
1.0 KiB
Docker
|
FROM microsoft/dotnet:2.2-sdk
|
||
|
ARG BUILD_CONFIGURATION=Debug
|
||
|
ENV ASPNETCORE_ENVIRONMENT=Development
|
||
|
ENV DOTNET_USE_POLLING_FILE_WATCHER=true
|
||
|
EXPOSE 80
|
||
|
|
||
|
WORKDIR /src
|
||
|
COPY ["src/BuildingBlocks/EventBus/EventBus/EventBus.csproj", "src/BuildingBlocks/EventBus/EventBus/"]
|
||
|
COPY ["src/BuildingBlocks/EventBus/EventBusRabbitMQ/EventBusRabbitMQ.csproj", "src/BuildingBlocks/EventBus/EventBusRabbitMQ/"]
|
||
|
COPY ["src/BuildingBlocks/EventBus/EventBusServiceBus/EventBusServiceBus.csproj", "src/BuildingBlocks/EventBus/EventBusServiceBus/"]
|
||
|
COPY ["src/BuildingBlocks/EventBus/IntegrationEventLogEF/IntegrationEventLogEF.csproj", "src/BuildingBlocks/EventBus/IntegrationEventLogEF/"]
|
||
|
COPY ["src/Services/Payment/Payment.API/Payment.API.csproj", "src/Services/Payment/Payment.API/"]
|
||
|
|
||
|
RUN dotnet restore src/Services/Payment/Payment.API/Payment.API.csproj
|
||
|
COPY . .
|
||
|
WORKDIR /src/src/Services/Payment/Payment.API
|
||
|
RUN dotnet build --no-restore -c $BUILD_CONFIGURATION
|
||
|
|
||
|
ENTRYPOINT ["dotnet", "run", "--no-build", "--no-launch-profile", "-c", "$BUILD_CONFIGURATION", "--"]
|