Skip to content

Commit f5ffdbe

Browse files
committed
fix: update Dockerfile to use renamed shuvcode binary
1 parent d438f6e commit f5ffdbe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/opencode/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ ENV BUN_RUNTIME_TRANSPILER_CACHE_PATH=${BUN_RUNTIME_TRANSPILER_CACHE_PATH}
77
RUN apk add libgcc libstdc++ ripgrep
88

99
FROM base AS build-amd64
10-
COPY dist/opencode-linux-x64-baseline-musl/bin/opencode /usr/local/bin/opencode
10+
COPY dist/shuvcode-linux-x64-baseline-musl/bin/shuvcode /usr/local/bin/shuvcode
1111

1212
FROM base AS build-arm64
13-
COPY dist/opencode-linux-arm64-musl/bin/opencode /usr/local/bin/opencode
13+
COPY dist/shuvcode-linux-arm64-musl/bin/shuvcode /usr/local/bin/shuvcode
1414

1515
ARG TARGETARCH
1616
FROM build-${TARGETARCH}
17-
RUN opencode --version
18-
ENTRYPOINT ["opencode"]
17+
RUN shuvcode --version
18+
ENTRYPOINT ["shuvcode"]

0 commit comments

Comments
 (0)