加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 683 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhangxinya 提交于 2020-06-17 16:46 . first add
FROM mcr.microsoft.com/dotnet/core/aspnet:3.0-buster-slim AS base
LABEL company="Kengic" app="Identity" app.type="Service"
WORKDIR /app
EXPOSE 80
FROM mcr.microsoft.com/dotnet/core/sdk:3.0-buster AS publish
WORKDIR /src
COPY ["src/Services/Kengic.Identity.API/Kengic.Identity.API.csproj", "src/Services/Kengic.Identity.API/"]
WORKDIR "/src/src/Services/Kengic.Identity.API"
RUN dotnet restore -nowarn:msb3202,nu1503 "Kengic.Identity.API.csproj"
COPY ["src/Services/Kengic.Identity.API/", "."]
RUN dotnet publish "Kengic.Identity.API.csproj" --no-restore -c Release -o /app
FROM base AS final
WORKDIR /app
COPY --from=publish /app .
ENTRYPOINT ["dotnet", "Kengic.Identity.API.dll"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化