fix: unblock onboard docker smoke

This commit is contained in:
Peter Steinberger 2026-03-31 18:11:28 +01:00
parent bfba84a69d
commit e039c72a76
No known key found for this signature in database
2 changed files with 5 additions and 7 deletions

View File

@ -22,6 +22,7 @@ COPY --chown=appuser:appuser package.json pnpm-lock.yaml pnpm-workspace.yaml .np
COPY --chown=appuser:appuser ui/package.json ./ui/package.json
COPY --chown=appuser:appuser extensions ./extensions
COPY --chown=appuser:appuser patches ./patches
COPY --chown=appuser:appuser scripts/postinstall-bundled-plugins.mjs ./scripts/postinstall-bundled-plugins.mjs
RUN --mount=type=cache,id=openclaw-pnpm-store,target=/home/appuser/.local/share/pnpm/store,sharing=locked \
pnpm install --frozen-lockfile

View File

@ -275,15 +275,12 @@ TRASH
}
send_channels_flow() {
# Configure channels via configure wizard. Sync on prompt text so
# keystrokes do not drift into the wrong screen when render timing changes.
# Configure channels via configure wizard. Use the remove-config branch for
# a stable no-op smoke path when the config starts empty.
wait_for_log "Where will the Gateway run?" 120
send $'"'"'\r'"'"' 0.6
wait_for_log "Channels" 120
send $'"'"'\r'"'"' 0.6
# Select a channel -> Finished (last option; clack wraps on Up)
wait_for_log "Select a channel" 120
send $'"'"'\e[A\r'"'"' 0.8
wait_for_log "Configure/link" 120
send $'"'"'\e[B\r'"'"' 0.8
# Keep stdin open until wizard exits.
send "" 2.0
}