FastTunnel/Dockerfile.Client

24 lines
828 B
Docker
Raw Permalink Normal View History

2023-01-02 00:16:35 +08:00
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
2024-07-03 09:46:53 +08:00
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
2023-01-02 00:16:35 +08:00
WORKDIR /app
EXPOSE 80
EXPOSE 443
2024-07-03 09:46:53 +08:00
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
2023-01-02 00:16:35 +08:00
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"]