diff --git a/OpenBullet2.Web/Dockerfile b/OpenBullet2.Web/Dockerfile index 661013c32..9fd72d1e1 100644 --- a/OpenBullet2.Web/Dockerfile +++ b/OpenBullet2.Web/Dockerfile @@ -6,6 +6,10 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0-bookworm-slim AS backend WORKDIR /code COPY . . + +#Disable Beauty to avoid Errors +RUN sed -i 's/False<\/DisableBeauty>/True<\/DisableBeauty>/' OpenBullet2.Web/OpenBullet2.Web.csproj + RUN dotnet publish OpenBullet2.Web -c Release -o /build WORKDIR /build