Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docker/omnigraph-server.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# syntax=docker/dockerfile:1
# syntax=docker/dockerfile:1@sha256:87999aa3d42bdc6bea60565083ee17e86d1f3339802f543c0d03998580f9cb89
#
# omnigraph-server — witan's data tier (ADR-0009 decision point 2 / option 3).
#
Expand All @@ -25,7 +25,7 @@
ARG OMNIGRAPH_VERSION=0.8.1

# ── Fetch + checksum-verify the release, extract both binaries ────────────────
FROM debian:trixie-slim AS fetch
FROM debian:trixie-slim@sha256:020c0d20b9880058cbe785a9db107156c3c75c2ac944a6aa7ab59f2add76a7bd AS fetch
ARG OMNIGRAPH_VERSION
ARG TARGETARCH=amd64
RUN apt-get update \
Expand Down Expand Up @@ -53,7 +53,7 @@ RUN set -eux; \
/out/omnigraph --version

# ── Runtime ───────────────────────────────────────────────────────────────────
FROM debian:trixie-slim AS runtime
FROM debian:trixie-slim@sha256:020c0d20b9880058cbe785a9db107156c3c75c2ac944a6aa7ab59f2add76a7bd AS runtime
ARG OMNIGRAPH_VERSION
LABEL org.opencontainers.image.title="omnigraph-server" \
org.opencontainers.image.description="witan data tier — S3-backed omnigraph graph server" \
Expand Down
4 changes: 2 additions & 2 deletions docker/witan.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# syntax=docker/dockerfile:1
# syntax=docker/dockerfile:1@sha256:87999aa3d42bdc6bea60565083ee17e86d1f3339802f543c0d03998580f9cb89
#
# witan — the MCP tier (ADR-0009). Packages the `witan` umbrella CLI (which
# mounts `witan code` from witan-code) and runs it as a streamable-HTTP MCP
Expand All @@ -23,7 +23,7 @@ ARG OMNIGRAPH_VERSION=0.8.1
ARG WITAN_VERSION=0.4.0

# ── Fetch the pinned omnigraph CLI binary (checksum-verified) ─────────────────
FROM debian:trixie-slim AS omnigraph-fetch
FROM debian:trixie-slim@sha256:020c0d20b9880058cbe785a9db107156c3c75c2ac944a6aa7ab59f2add76a7bd AS omnigraph-fetch
ARG OMNIGRAPH_VERSION
ARG TARGETARCH=amd64
RUN apt-get update \
Expand Down