14 lines
772 B
Bash
14 lines
772 B
Bash
# The image the sandbox runs, pinned by digest so a run is reproducible.
|
|
#
|
|
# Bump this deliberately. The whole point of the sandbox is that two people on two
|
|
# machines exercise the same bytes, which a floating tag does not give you.
|
|
#
|
|
# This is the multi-arch index digest (linux/amd64 + linux/arm64), so it resolves on
|
|
# both Apple Silicon and CI. Take it from the index, not a per-platform manifest:
|
|
#
|
|
# docker buildx imagetools inspect ghcr.io/plastic-labs/honcho:latest
|
|
#
|
|
# The image must contain src/mock_provider, which mock mode runs as its own service.
|
|
# sandbox.sh checks that before starting rather than letting the service crash-loop.
|
|
HONCHO_SANDBOX_IMAGE=ghcr.io/plastic-labs/honcho@sha256:a741e601e2c2fda5af4b6c207946aad45db2a11db05f04c1dc094f998794eae1
|