Add ci-fleet-publish plugin image + multi-arch quartet flow (oleks/ci-scripts#14, #15)

This commit is contained in:
2026-07-05 16:49:48 +03:00
parent 815888219f
commit a04c5aec12
6 changed files with 397 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
# ci-fleet-publish plugin image (oleks/ci-scripts#14).
#
# Base: the existing nixos-ci toolchain image (nix, docker-buildx,
# attic-client, nixos-ci-entrypoint already baked in — see
# ~/projects/nix-customs/nixos-ci). This image adds only the plugin
# entrypoint on top.
FROM git.oleks.space/oleks/nix-ci:latest
COPY entrypoint.sh /usr/local/bin/ci-fleet-publish-entrypoint
RUN chmod +x /usr/local/bin/ci-fleet-publish-entrypoint
ENTRYPOINT ["/usr/local/bin/ci-fleet-publish-entrypoint"]