12345678910111213 |
- FROM microsoft/dotnet:2.1-sdk-stretch AS build
- WORKDIR /app
- COPY PlatformBenchmarks .
- RUN dotnet publish -c Release -o out
- COPY Benchmarks/appsettings.mysql.json ./out/appsettings.json
- FROM mono:5.12.0.226 AS runtime
- ENV ASPNETCORE_URLS http://+:8080
- ENV KestrelTransport Libuv
- WORKDIR /app
- COPY --from=build /app/out ./
- ENTRYPOINT ["mono", "--server", "--gc=sgen", "--gc-params=mode=throughput", "PlatformBenchmarks.exe"]
|