mirror of
https://github.com/luxfi/chains.git
synced 2026-07-27 03:39:41 +00:00
- 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.
9 lines
307 B
Docker
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"]
|