1 Star 0 Fork 4.1K

朱道森 / Furion

forked from dotNET China / Furion 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 808 Bytes
一键复制 编辑 原始数据 按行查看 历史
百小僧 提交于 2021-02-25 15:34 . 🍚 move project to organization.
# Author:KaneLeung(https://github.com/KaneLeung)
# Update:20201118
# NetCore SDK
# https://hub.docker.com/_/microsoft-dotnet-nightly-sdk/
FROM mcr.microsoft.com/dotnet/nightly/sdk:5.0-alpine AS build
WORKDIR /source
# Download Source
RUN git init
RUN git remote add -t master -m master origin https://gitee.com/dotnetchina/Furion.git
RUN git config core.sparseCheckout true
RUN echo samples >> .git/info/sparse-checkout
RUN git pull --depth 1 origin main
# Restore And Publish
WORKDIR /source/samples
RUN dotnet restore
RUN dotnet publish -c release -o /app --no-restore
# Run Furion
# https://hub.docker.com/_/microsoft-dotnet-nightly-aspnet/
FROM mcr.microsoft.com/dotnet/nightly/aspnet:5.0-alpine
WORKDIR /app
COPY --from=build /app ./
EXPOSE 80
EXPOSE 443
ENTRYPOINT ["dotnet", "Furion.Web.Entry.dll"]
C#
1
https://gitee.com/doson/Furion.git
git@gitee.com:doson/Furion.git
doson
Furion
Furion
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891