1 Star 0 Fork 0

JackLovel / core7-website

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 381 Bytes
一键复制 编辑 原始数据 按行查看 历史
JackLovel 提交于 2022-03-27 21:42 . update
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
WORKDIR /source
COPY *.sln .
COPY core7-website//*.csproj ./core7-website/
RUN dotnet restore
COPY core7-website/. ./core7-website/
WORKDIR /source/aspnetapp
RUN dotnet publish -c release -o /app --no-restore
FROM mcr.microsoft.com/dotnet/aspnet:6.0
WORKDIR /app
COPY --from=build /app ./
ENTRYPOINT ["dotnet", "core7-website.dll"]
1
https://gitee.com/wcc210/core7-website.git
git@gitee.com:wcc210/core7-website.git
wcc210
core7-website
core7-website
master

搜索帮助