style: Add OpenCode AI to PATH in Dockerfile for easier access

This commit is contained in:
Nawaz Dhandala
2025-12-29 13:26:57 +00:00
parent 0a20591bf9
commit 629890b118

View File

@@ -37,6 +37,9 @@ RUN apt-get install bash -y && apt-get install curl -y
# Install OpenCode AI coding assistant
RUN curl -fsSL https://opencode.ai/install | bash
# Add OpenCode to PATH (installed to $HOME/.opencode/bin by default)
ENV PATH="/root/.opencode/bin:${PATH}"
#Use bash shell by default
SHELL ["/bin/bash", "-c"]