Files
chains/Dockerfile.plugin
T
Hanzo DevandGitHub 300f9406f9 ci: migrate to canonical docker-build reusable with matrix (#1)
- Replace bespoke release.yml with canonical matrix calling hanzoai/.github/.github/workflows/docker-build.yml@main
- Add .github/images.json for per-VM image configuration
- Add Dockerfile.plugin (stateless scratch wrapper for pre-built VM binary)
- Add workflow-sanity.yml

Images built: 12 VM plugins under ghcr.io/luxfi/chains/*
(servicenodevm, teleportvm removed from release — directories missing in repo)

Refs: hanzoai/.github canonical Docker CI contract.
2026-04-23 19:20:48 -07:00

9 lines
307 B
Docker

# Plugin image: stateless FROM scratch container that serves a single
# pre-built VM plugin binary. Binary is produced by the workflow's
# pre-build-command on the native-arch runner and placed at /build/<vm>.
# syntax=docker/dockerfile:1
FROM scratch
ARG VM
COPY build/${VM} /plugin
ENTRYPOINT ["/plugin"]