# syntax=docker/dockerfile:1 # # DeerFlow "lark-cli broker" image (Pattern B, issue #4338). # # Purpose: hold `lark-cli` + the per-user Lark credentials in a long-running # sidecar and expose only the command surface over loopback, so the plaintext # app secret / OAuth tokens never get mounted into the sandbox container. # # The one image runs in two modes (dispatched by the first CLI arg): # # install-shim init-container mode: write the Python shim + # runtime marker into the shared emptyDir at # (default /mnt/integrations/lark-cli/runtime), so the # sandbox finds `bin/lark-cli` on PATH — same layout the # Pattern A init image produces, marked kind=shim. # # serve (default CMD) sidecar mode: run the broker HTTP server on loopback # with the real `lark-cli` and credential env pointing at # the sidecar-only /var/lark/{config,data} mounts. # # At BUILD time (network available) this image downloads and SHA-256-verifies the # official `larksuite/cli` Linux release binaries (via the shared build-runtime.sh # from docker/lark-cli-init) into /opt/lark-cli, so the sidecar has a real binary. # # The shim itself is written from the in-process constant # LARK_CLI_BROKER_SHIM_SCRIPT (deerflow.integrations.lark_broker), so the image's # shim can never drift from the Gateway's copy. # # Build (defaults to the pinned version below): # docker build -t deer-flow/lark-cli-broker:v1.0.65 \ # --build-arg LARK_CLI_VERSION=v1.0.65 \ # -f docker/lark-cli-broker/Dockerfile . # # NOTE: build context is the repo root (the module lives under backend/). FROM debian:bookworm-slim AS builder ARG APT_MIRROR ARG LARK_CLI_VERSION=v1.0.65 RUN if [ -n "${APT_MIRROR}" ]; then \ sed -i "s|deb.debian.org|${APT_MIRROR}|g" /etc/apt/sources.list.d/debian.sources 2>/dev/null || true; \ sed -i "s|deb.debian.org|${APT_MIRROR}|g" /etc/apt/sources.list 2>/dev/null || true; \ fi RUN apt-get update && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ && rm -rf /var/lib/apt/lists/* # Reuse the Pattern A build script so the real sidecar binary is staged with the # identical download + SHA-256 verification path. COPY docker/lark-cli-init/build-runtime.sh /usr/local/bin/build-runtime.sh RUN chmod +x /usr/local/bin/build-runtime.sh \ && LARK_CLI_VERSION="${LARK_CLI_VERSION}" /usr/local/bin/build-runtime.sh /opt/lark-cli # ── Final image: python3 + the staged real binary + the broker module ──────── FROM python:3.12-slim ARG LARK_CLI_VERSION=v1.0.65 ENV LARK_CLI_VERSION=${LARK_CLI_VERSION} COPY --from=builder /opt/lark-cli /opt/lark-cli # Single stdlib-only module drives both install-shim and serve. COPY backend/packages/harness/deerflow/integrations/lark_broker.py /opt/broker/lark_broker.py COPY docker/lark-cli-broker/entrypoint.sh /usr/local/bin/lark-cli-broker RUN chmod +x /usr/local/bin/lark-cli-broker # serve mode: the sidecar runs the real arch-dispatch launcher and reads the # credential dirs the provisioner mounts into the sidecar only. ENV DEERFLOW_LARK_BROKER_CLI=/opt/lark-cli/bin/lark-cli \ LARKSUITE_CLI_CONFIG_DIR=/var/lark/config \ LARKSUITE_CLI_DATA_DIR=/var/lark/data \ DEERFLOW_LARK_BROKER_HOST=127.0.0.1 \ DEERFLOW_LARK_BROKER_PORT=8788 \ LARK_CLI_RUNTIME_DEST=/mnt/integrations/lark-cli/runtime ENTRYPOINT ["/usr/local/bin/lark-cli-broker"] CMD ["serve"]