Fetch the repository succeeded.
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443
EXPOSE 5060
EXPOSE 8080
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build
WORKDIR /src
COPY ["GB28181.Server/GB28181.Server.csproj", "GB28181.Server/"]
RUN dotnet restore "GB28181.Server/GB28181.Server.csproj"
COPY . .
WORKDIR "/src/GB28181.Server"
RUN dotnet build "GB28181.Server.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "GB28181.Server.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "GB28181.Server.dll"]
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。