up
Some checks failed
Build Test Deploy / build-test (push) Has been cancelled
Build Test Deploy / authority-container (push) Has been cancelled
Build Test Deploy / docs (push) Has been cancelled
Build Test Deploy / deploy (push) Has been cancelled
Docs CI / lint-and-preview (push) Has been cancelled

This commit is contained in:
root
2025-10-10 06:53:40 +00:00
parent 3aed135fb5
commit df5984d07e
1081 changed files with 97764 additions and 61389 deletions

View File

@@ -0,0 +1,13 @@
###### generated-by: Ablera.Serdica.CiJobsBuilder 1.0.0 ######
FROM mirrors.ablera.dev/docker-mirror/dotnet/sdk:9.0-alpine AS build
WORKDIR /
COPY . .
WORKDIR /src/Serdica/Ablera.Serdica.Authority/__Plugins/Ablera.Serdica.Authority.Plugin.Bulstrad
RUN dotnet restore "Ablera.Serdica.Authority.Plugin.Bulstrad.csproj"
RUN dotnet publish "Ablera.Serdica.Authority.Plugin.Bulstrad.csproj" -c Release -o /app/PluginBinaries
RUN apk add --no-cache zip && \
cd / && zip -r /ablera-serdica-authority-plugin-bulstrad.zip app
FROM alpine:3.19 AS final
COPY --from=build /ablera-serdica-authority-plugin-bulstrad.zip /
LABEL org.opencontainers.image.description="Plugin artefacts only"