5 Star 24 Fork 13

老张的哲学 / Blog.IdentityServer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 747 Bytes
一键复制 编辑 原始数据 按行查看 历史
MandIand 提交于 2021-08-08 16:07 . Create Dockerfile
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM mcr.microsoft.com/dotnet/aspnet:3.1 AS base
WORKDIR /app
EXPOSE 5004
FROM mcr.microsoft.com/dotnet/sdk:3.1 AS build
WORKDIR /src
COPY ["Blog.IdentityServer/Blog.IdentityServer.csproj", "Blog.IdentityServer/"]
RUN dotnet restore "Blog.IdentityServer/Blog.IdentityServer.csproj"
COPY . .
WORKDIR "/src/Blog.IdentityServer"
RUN dotnet build "Blog.IdentityServer.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "Blog.IdentityServer.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "Blog.IdentityServer.dll"]
1
https://gitee.com/laozhangIsPhi/Blog.IdentityServer.git
git@gitee.com:laozhangIsPhi/Blog.IdentityServer.git
laozhangIsPhi
Blog.IdentityServer
Blog.IdentityServer
master

搜索帮助