workmux 0.1.184

An opinionated workflow tool that orchestrates git worktrees and tmux
1
2
3
4
5
6
7
8
9
10
ARG BASE=ghcr.io/raine/workmux-sandbox:base
FROM ${BASE}

ARG CACHE_BUST=1

# Install OpenCode, then move to a globally accessible path so the binary
# is reachable when running as an arbitrary non-root UID (--user uid:gid).
RUN curl -fsSL https://opencode.ai/install | bash && \
    mv /root/.opencode /opt/opencode && \
    ln -s /opt/opencode/bin/opencode /usr/local/bin/opencode