Fix Dockerfile COPY path for opencode binary

This commit is contained in:
southseact-3d
2026-02-10 13:10:37 +00:00
parent f9739608e6
commit 28ebae966b

View File

@@ -82,9 +82,8 @@ RUN ARCH="${TARGETARCH:-}" && \
# Install OpenCode from locally built CLI artifacts # Install OpenCode from locally built CLI artifacts
# CI builds these binaries from the opencode folder. # CI builds these binaries from the opencode folder.
COPY opencode /opt/opencode-src COPY opencode /opt/opencode-src
COPY opencode/packages/opencode/dist/opencode-linux-x64/bin/opencode /opt/opencode-bin/opencode-linux-x64 COPY opencode/packages/opencode/dist/bin/opencode /usr/local/bin/opencode
RUN cp /opt/opencode-bin/opencode-linux-x64 /usr/local/bin/opencode \ RUN chmod +x /usr/local/bin/opencode
&& chmod +x /usr/local/bin/opencode
# Removed Gemini CLI - not needed for Shopify AI App Builder # Removed Gemini CLI - not needed for Shopify AI App Builder