Skip to content

Commit 3aa7878

Browse files
Update Dockerfile to install bash and opencode-ai
Install bash and opencode-ai in the Docker image.
1 parent 94fdf6a commit 3aa7878

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

Dockerfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
FROM node:24-alpine
22

3-
# Install opencode
4-
# NOTE: Replace 'npm install -g opencode' with the actual installation command
5-
# if opencode is distributed via a binary (e.g., curl/wget).
6-
RUN npm i -g opencode-ai
3+
# Install bash for the entrypoint script and opencode-ai
4+
RUN apk add --no-cache bash && npm i -g opencode-ai
75

86
WORKDIR /app
97

0 commit comments

Comments
 (0)