Ai
1 Star 0 Fork 0

imlxp/NetCoreCICD

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 714 Bytes
一键复制 编辑 原始数据 按行查看 历史
imlxp 提交于 2020-06-09 17:25 +08:00 . update
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build
WORKDIR /src
COPY ["NetCoreCICD/NetCoreCICD.csproj", "NetCoreCICD/"]
RUN dotnet restore "NetCoreCICD/NetCoreCICD.csproj"
COPY . .
WORKDIR "/src/NetCoreCICD"
RUN dotnet build "NetCoreCICD.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "NetCoreCICD.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "NetCoreCICD.dll"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/imlxp/NetCoreCICD.git
git@gitee.com:imlxp/NetCoreCICD.git
imlxp
NetCoreCICD
NetCoreCICD
master

搜索帮助