6 Star 28 Fork 790

dotNET China / FastTunnel

forked from FastTunnel / FastTunnel 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile.Client 828 Bytes
一键复制 编辑 原始数据 按行查看 历史
Gui.H 提交于 2023-01-02 00:16 . 1
#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:7.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
WORKDIR /src
COPY ["FastTunnel.Client/FastTunnel.Client.csproj", "FastTunnel.Client/"]
COPY ["FastTunnel.Core.Client/FastTunnel.Core.Client.csproj", "FastTunnel.Core.Client/"]
RUN dotnet restore "FastTunnel.Client/FastTunnel.Client.csproj"
COPY . .
WORKDIR "/src/FastTunnel.Client"
RUN dotnet build "FastTunnel.Client.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "FastTunnel.Client.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "FastTunnel.Client.dll"]
C#
1
https://gitee.com/dotnetchina/FastTunnel.git
git@gitee.com:dotnetchina/FastTunnel.git
dotnetchina
FastTunnel
FastTunnel
v2

搜索帮助