1 Star 0 Fork 4.2K

wangzhefeng2000/Furion

forked from dotNET China/Furion 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 819 Bytes
一键复制 编辑 原始数据 按行查看 历史
百小僧 提交于 2025-02-03 08:00 +08:00 . 😊 更新开源协议年份
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
WORKDIR /src
RUN git init
RUN git remote add origin https://gitee.com/dotnetchina/Furion.git
RUN git config core.sparseCheckout true
RUN echo samples >> .git/info/sparse-checkout
RUN echo framework >> .git/info/sparse-checkout
RUN git pull --depth 1 origin v5-transition
RUN dotnet restore "./samples/Furion.Web.Entry/Furion.Web.Entry.csproj"
RUN dotnet publish "./samples/Furion.Web.Entry/Furion.Web.Entry.csproj" -c release -o /app --no-restore
FROM mcr.microsoft.com/dotnet/aspnet:9.0
WORKDIR /app
COPY --from=build /app ./
EXPOSE 8080
EXPOSE 8081
ENTRYPOINT ["dotnet", "Furion.Web.Entry.dll"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/wangzhefeng2000/Furion.git
git@gitee.com:wangzhefeng2000/Furion.git
wangzhefeng2000
Furion
Furion
v5-transition

搜索帮助