1 Star 0 Fork 258

LBPeking007/AKStream

forked from chatop2020/AKStream 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile-Web 1.84 KB
一键复制 编辑 原始数据 按行查看 历史
Zhiyuan Mei 提交于 2023-09-11 15:25 . Update Dockerfile-Web
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
#作者(author):自动畅(auto-chang)
#微信号(WeChat):自动畅(auto-chang)
#公众号(WeChat official account):畅聊了个科技(IT-chang)
#时间(Time):2023年4月22日,星期六(Saturday, April 22, 2023)
#描述(Describe:为爱发电(Power Generation for Love)
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
WORKDIR /app
RUN apt-get update && apt-get install -q -y --no-install-recommends \
procps \
net-tools \
&& rm -rf /var/lib/apt/lists/*
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
ln -s /sbin/route /usr/sbin/route && \
ln -s /sbin/ifconfig /usr/sbin/ifconfig
EXPOSE 80
EXPOSE 443
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
WORKDIR /src
COPY ["AKStreamWeb/AKStreamWeb.csproj", "AKStreamWeb/"]
COPY ["LibCommon/LibCommon.csproj", "LibCommon/"]
COPY ["LibLogger/LibLogger.csproj", "LibLogger/"]
COPY ["SipSorcery/SIPSorcery.csproj", "SipSorcery/"]
COPY ["LibGB28181SipClient/LibGB28181SipClient.csproj", "LibGB28181SipClient/"]
COPY ["LibSystemInfo/LibSystemInfo.csproj", "LibSystemInfo/"]
COPY ["SystemInfoLibrary/src/SystemInfoLibrary.Standard/SystemInfoLibrary.Standard.csproj", "SystemInfoLibrary/src/SystemInfoLibrary.Standard/"]
COPY ["LibGB28181SipServer/LibGB28181SipServer.csproj", "LibGB28181SipServer/"]
COPY ["LibZLMediaKitMediaServer/LibZLMediaKitMediaServer.csproj", "LibZLMediaKitMediaServer/"]
RUN dotnet restore "AKStreamWeb/AKStreamWeb.csproj"
COPY . .
WORKDIR "/src/AKStreamWeb"
RUN dotnet build "AKStreamWeb.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "AKStreamWeb.csproj" -c Release -o /app/publish /p:UseAppHost=false
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "AKStreamWeb.dll"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/LBPeking007/AKStream.git
git@gitee.com:LBPeking007/AKStream.git
LBPeking007
AKStream
AKStream
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385