mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-25 04:02:51 +08:00

* Upgrade Projects * Push to trigger builds * Tried Thread Sleep before deleting file * FileDeleteTryCatch * Updated from AspnetCore All to App * Travis version Upgrade (.net core 2.2) * dotnet 2.2.105
20 lines
567 B
Docker
20 lines
567 B
Docker
FROM microsoft/dotnet:2.1-aspnetcore-runtime AS base
|
|
WORKDIR /app
|
|
EXPOSE 80
|
|
|
|
FROM microsoft/dotnet:2.1-sdk AS build
|
|
WORKDIR /src
|
|
COPY ["DownstreamService/DownstreamService.csproj", "DownstreamService/"]
|
|
RUN dotnet restore "DownstreamService/DownstreamService.csproj"
|
|
COPY . .
|
|
WORKDIR "/src/DownstreamService"
|
|
RUN dotnet build "DownstreamService.csproj" -c Release -o /app
|
|
|
|
FROM build AS publish
|
|
RUN dotnet publish "DownstreamService.csproj" -c Release -o /app
|
|
|
|
FROM base AS final
|
|
WORKDIR /app
|
|
COPY --from=publish /app .
|
|
ENTRYPOINT ["dotnet", "DownstreamService.dll"]
|