20 lines
490 B
Docker
Raw Normal View History

2018-12-11 13:51:58 +01:00
FROM microsoft/dotnet:2.2.0-aspnetcore-runtime AS base
2018-01-26 16:09:36 +00:00
WORKDIR /app
EXPOSE 80
2018-12-11 13:51:58 +01:00
FROM microsoft/dotnet:2.2.100-sdk AS build
2018-01-26 16:09:36 +00:00
WORKDIR /src
COPY . .
WORKDIR /src/src/ApiGateways/Mobile.Bff.Shopping/aggregator
RUN dotnet restore -nowarn:msb3202,nu1503
2018-01-26 16:09:36 +00:00
RUN dotnet build --no-restore -c Release -o /app
FROM build AS publish
RUN dotnet publish --no-restore -c Release -o /app
FROM base AS final
WORKDIR /app
COPY --from=publish /app .
2018-02-15 17:30:39 +01:00
ENTRYPOINT ["dotnet", "Mobile.Shopping.HttpAggregator.dll"]