fix : 도커 의존성 추가, 윈도우용 미니덤프 제거 Dotnet-dump사용
This commit is contained in:
@@ -5,7 +5,9 @@ WORKDIR /app
|
||||
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
|
||||
ARG BUILD_CONFIGURATION=Release
|
||||
WORKDIR /src
|
||||
# ServerLib 의존성 포함해서 restore (캐시 레이어 최적화)
|
||||
COPY ["MMOserver/MMOserver.csproj", "MMOserver/"]
|
||||
COPY ["ServerLib/ServerLib.csproj", "ServerLib/"]
|
||||
RUN dotnet restore "MMOserver/MMOserver.csproj"
|
||||
COPY . .
|
||||
WORKDIR "/src/MMOserver"
|
||||
|
||||
@@ -9,6 +9,11 @@
|
||||
<LangVersion>13</LangVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<DebugType>portable</DebugType>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="LiteNetLib" Version="2.0.2" />
|
||||
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.3" />
|
||||
|
||||
Reference in New Issue
Block a user