1 Star 0 Fork 0

李文建 / protoactor-dotnet

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
dockerfile-sender 416 Bytes
一键复制 编辑 原始数据 按行查看 历史
rogerjohansson 提交于 2020-09-19 18:11 . .
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS base
WORKDIR /sourcecode
COPY ./src ./src/
COPY ./benchmarks ./benchmarks/
RUN ls -la /sourcecode/*
WORKDIR /sourcecode/benchmarks/ClusterBenchmark
RUN dotnet restore
RUN dotnet build -c Release -o /app
FROM base AS publish
RUN dotnet publish -c Release -o /app
FROM base AS final
WORKDIR /app
COPY --from=publish /app .
ENTRYPOINT ["dotnet", "ClusterBenchmark.dll"]
C#
1
https://gitee.com/lwj8507/protoactor-dotnet.git
git@gitee.com:lwj8507/protoactor-dotnet.git
lwj8507
protoactor-dotnet
protoactor-dotnet
dev

搜索帮助