File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7,16 +7,16 @@ EXPOSE 443
77
88FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
99WORKDIR /src
10- COPY ["MultiplayerServerSecureWebsocket .csproj" , "." ]
11- RUN dotnet restore "./MultiplayerServerSecureWebsocket .csproj"
10+ COPY ["GameServer.ReverseProxy .csproj" , "." ]
11+ RUN dotnet restore "./GameServer.ReverseProxy .csproj"
1212COPY . .
1313WORKDIR "/src/."
14- RUN dotnet build "MultiplayerServerSecureWebsocket .csproj" -c Release -o /app/build
14+ RUN dotnet build "GameServer.ReverseProxy .csproj" -c Release -o /app/build
1515
1616FROM build AS publish
17- RUN dotnet publish "MultiplayerServerSecureWebsocket .csproj" -c Release -o /app/publish
17+ RUN dotnet publish "GameServer.ReverseProxy .csproj" -c Release -o /app/publish
1818
1919FROM base AS final
2020WORKDIR /app
2121COPY --from=publish /app/publish .
22- ENTRYPOINT ["dotnet" , "MultiplayerServerSecureWebsocket .dll" ]
22+ ENTRYPOINT ["dotnet" , "GameServer.ReverseProxy .dll" ]
You can’t perform that action at this time.
0 commit comments