2019-02-25 13:26:31 +01:00
|
|
|
FROM microsoft/dotnet:2.2-sdk
|
|
|
|
ARG BUILD_CONFIGURATION=Debug
|
2018-07-17 11:04:29 +02:00
|
|
|
ENV ASPNETCORE_ENVIRONMENT=Development
|
|
|
|
ENV DOTNET_USE_POLLING_FILE_WATCHER=true
|
|
|
|
EXPOSE 80
|
|
|
|
|
|
|
|
WORKDIR /src
|
|
|
|
COPY ["src/ApiGateways/Mobile.Bff.Shopping/aggregator/Mobile.Shopping.HttpAggregator.csproj", "src/ApiGateways/Mobile.Bff.Shopping/aggregator/"]
|
|
|
|
|
2018-10-01 17:32:53 +02:00
|
|
|
RUN dotnet restore src/ApiGateways/Mobile.Bff.Shopping/aggregator/Mobile.Shopping.HttpAggregator.csproj -nowarn:msb3202,nu1503
|
2018-07-17 11:04:29 +02:00
|
|
|
COPY . .
|
|
|
|
WORKDIR "/src/src/ApiGateways/Mobile.Bff.Shopping/aggregator"
|
2018-10-01 17:32:53 +02:00
|
|
|
RUN dotnet build --no-restore -c $BUILD_CONFIGURATION
|
2018-07-17 11:04:29 +02:00
|
|
|
|
2019-02-25 13:26:31 +01:00
|
|
|
CMD ["dotnet", "run", "--no-build", "--no-launch-profile", "-c", "$BUILD_CONFIGURATION", "--"]]
|