ocdash-template / Dockerfile
OcDash Deploy
fix: install opencode binary
ccea58a
Raw
History Blame Contribute Delete
272 Bytes
FROM alpine:latest
RUN apk add --no-cache libgcc libstdc++ ripgrep bash curl git openssh
RUN curl -fsSL https://opencode.ai/install | bash
ENV PATH="/root/.opencode/bin:$PATH"
WORKDIR /workspace
EXPOSE 4096
CMD ["opencode", "serve", "--port", "4096", "--host", "0.0.0.0"]