- 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>
11 lines
272 B
Text
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
|