package testing A: { result: string #compute: [ { do: "fetch-container" ref: "alpine" }, { do: "exec" args: ["sh", "-c", """ echo '{"result": "from A"}' > /tmp/out """, ] dir: "/" }, { do: "export" // Source path in the container source: "/tmp/out" format: "json" }, ] } B: { result: string #compute: [ { do: "fetch-container" ref: "alpine" }, { do: "exec" env: DATA: A.result args: ["sh", "-c", """ echo "{\\"result\\": \\"dependency $DATA\\"}" > /tmp/out """, ] dir: "/" }, { do: "export" // Source path in the container source: "/tmp/out" format: "json" }, ] }