build fix2
All checks were successful
Build Docker Images / test (map[name:Morska plugin_project:DiunaBI.Plugins.Morska]) (push) Successful in 1m41s
Build Docker Images / test (map[name:PedrolloPL plugin_project:DiunaBI.Plugins.PedrolloPL]) (push) Successful in 1m36s
Build Docker Images / build-and-push (map[image_suffix:morska name:Morska plugin_project:DiunaBI.Plugins.Morska]) (push) Successful in 1m49s
Build Docker Images / build-and-push (map[image_suffix:pedrollopl name:PedrolloPL plugin_project:DiunaBI.Plugins.PedrolloPL]) (push) Successful in 1m48s

This commit is contained in:
2025-12-04 18:44:39 +01:00
parent 942da18d85
commit bf2beda390

View File

@@ -22,9 +22,9 @@ COPY . .
WORKDIR /${PLUGIN_PROJECT}
RUN dotnet build -c Release
# Build and publish API
# Build and publish API (skip automatic plugin copy since we handle it manually)
WORKDIR /DiunaBI.API
RUN dotnet publish -c Release -o /app/publish --no-restore
RUN dotnet publish -c Release -o /app/publish --no-restore -p:SkipPluginCopy=true
# Copy plugin DLL to publish output
RUN mkdir -p /app/publish/Plugins && \