🐛 The compile error has been fixed by ChatGPT which I dont know how did it made it

This commit is contained in:
2025-05-19 21:56:06 +08:00
parent 99f5d931c3
commit 793043aba2
3 changed files with 113 additions and 105 deletions

View File

@ -14,7 +14,8 @@ RUN dotnet build -c $BUILD_CONFIGURATION -o /app/build
FROM build AS publish
ARG BUILD_CONFIGURATION=Release
RUN dotnet publish -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
RUN mkdir -p /app/publish/zh-Hans
RUN dotnet publish -c $BUILD_CONFIGURATION -o /app/publish
FROM base AS final
WORKDIR /app