9.3K Star 14.5K Fork 4.2K

GVPdotNET China/Furion

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
Dockerfile 819 Bytes
Copy Edit Raw Blame History
百小僧 authored 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/dotnetchina/Furion.git
git@gitee.com:dotnetchina/Furion.git
dotnetchina
Furion
Furion
v5-transition

Search