1234567891011 |
- FROM mcr.microsoft.com/dotnet/core/sdk:2.1 AS build
- WORKDIR /app
- COPY Benchmarks .
- RUN dotnet publish -c Release -o out
- FROM mono:latest AS runtime
- ENV ASPNETCORE_URLS http://+:8080
- WORKDIR /app
- COPY --from=build /app/out ./
- ENTRYPOINT ["mono", "--server", "--gc=sgen", "--gc-params=mode=throughput", "Benchmarks.exe", "scenarios=mvcplaintext,mvcjson"]
|