guildhouse-spire-plugins/Containerfile.dev
Tyler King a58d548518 feat: network-policy extension, governance lifecycle, audit remediation
- Network-policy SPIRE plugin extension
- Governance event notification with merkle anchoring
- Shellstream specs for consent channels + HFL embedded ABI
- All 17 audit findings from AUDIT.md remediated
- SSH credential composer + substrate key manager updates
- Test coverage for config + sshcert packages

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-18 15:54:46 -04:00

11 lines
272 B
Text

FROM docker.io/golang:1.23-bookworm
RUN apt-get update && apt-get install -y \
git \
make \
&& rm -rf /var/lib/apt/lists/*
# buf for proto codegen (optional, skip if not needed yet)
# RUN go install github.com/bufbuild/buf/cmd/buf@latest
WORKDIR /workspace