1 Star 0 Fork 0

杜杰/apitest

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 666 Bytes
一键复制 编辑 原始数据 按行查看 历史
杜杰 提交于 2020-03-27 15:26 . 123
#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 apitest.csproj ./
RUN dotnet restore "./apitest.csproj"
COPY . .
WORKDIR "/src/."
RUN dotnet build "apitest.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "apitest.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "apitest.dll"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/clywind/apitest.git
git@gitee.com:clywind/apitest.git
clywind
apitest
apitest
master

搜索帮助