mod: add just, opencode config as jsonc

This commit is contained in:
Andy Bunce 2026-03-26 21:22:28 +00:00
parent d238718c09
commit d11b7a4a99
2 changed files with 23 additions and 5 deletions

View file

@ -5,7 +5,7 @@ FROM python:3.12-slim
RUN apt-get update && apt-get install -y \
git curl build-essential unzip sudo \
ffmpeg jq zsh pkg-config libssl-dev tmux \
default-jdk-headless \
default-jdk-headless just \
&& rm -rf /var/lib/apt/lists/*
#1a GIT store creds
@ -61,8 +61,8 @@ ENV PATH="/usr/local/go/bin:$PATH"
# tinygo Download the latest binary tarball
ARG TGO_VER=0.40.1
RUN curl -LO https://github.com/tinygo-org/tinygo/releases/download/v${TGO_VER}/tinygo_${TGO_VER}_amd64.tar.gz && \
sudo tar -C /usr/local -xzf tinygo_${TGO_VER}_amd64.tar.gz
RUN curl -LO https://github.com/tinygo-org/tinygo/releases/download/v${TGO_VER}/tinygo_${TGO_VER}_amd64.deb && \
dpkg -i tinygo_${TGO_VER}_amd64.deb
# Add TinyGo to your PATH (add to ~/.bashrc or ~/.zshrc for persistence)
ENV PATH="$PATH:/usr/local/tinygo/bin"