Skip to content

Commit ff39c10

Browse files
committed
fix(Dockerfile): remove COPY of deleted support/browser helper
support/browser was removed in the agent-browser cleanup; the build failed with 'failed to calculate checksum ... /support/browser: not found'. Drop the COPY line and remove browser from the chmod.
1 parent b653a8c commit ff39c10

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,15 +168,14 @@ FROM base AS cli
168168

169169
# ── Support utilities (moved from config/support/ to devstack/support/) ──
170170
# Copied to /opt/pi-support/ — used by start.sh at runtime
171-
COPY support/browser /opt/pi-support/browser
172171
COPY support/browser-state-cleanup.sh /opt/pi-support/browser-state-cleanup.sh
173172
COPY support/browser-validate.ts /opt/pi-support/browser-validate.ts
174173
COPY support/session-uuid.ts /opt/pi-support/session-uuid.ts
175174
COPY support/validate-subagent-output.ts /opt/pi-support/validate-subagent-output.ts
176175
COPY support/config/ /opt/pi-support/config/
177176
COPY support/docs/ /opt/pi-support/docs/
178177
COPY support/schemas/ /opt/pi-support/schemas/
179-
RUN chmod +x /opt/pi-support/browser /opt/pi-support/browser-state-cleanup.sh
178+
RUN chmod +x /opt/pi-support/browser-state-cleanup.sh
180179

181180
# ── Devstack deployment scripts ──
182181
COPY support/install-browser.sh /opt/devstack/install-browser.sh

0 commit comments

Comments
 (0)