1 Star 0 Fork 4K

过往云烟 / Furion

forked from dotNET China / Furion 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 805 Bytes
一键复制 编辑 原始数据 按行查看 历史
百小僧 提交于 2020-11-18 17:45 . 😋 update dockerfile.
# 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/monksoul/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/formerly-it/Furion.git
git@gitee.com:formerly-it/Furion.git
formerly-it
Furion
Furion
master

搜索帮助