From b63e6ced1a235db2a28a65202fac30b2deaad083 Mon Sep 17 00:00:00 2001 From: Brent Schroeter Date: Fri, 8 May 2026 09:28:00 -0700 Subject: [PATCH] remove lightly used and time consuming installs --- Containerfile | 9 +-------- assets/mise/config.toml | 1 - 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/Containerfile b/Containerfile index 4e6f6b1..cb192e0 100644 --- a/Containerfile +++ b/Containerfile @@ -12,7 +12,7 @@ RUN yes | unminimize RUN apt-get install -y gpg sudo wget curl build-essential software-properties-common libssl-dev pkg-config libglew-dev git fish # Install handy developer tools. -RUN apt-get install -y iputils-ping postgresql-client git-delta golang jq sqlite3 vim pipx ripgrep openssh-server +RUN apt-get install -y iputils-ping postgresql-client git-delta jq sqlite3 vim pipx ripgrep openssh-server # Install and configure Podman. RUN apt-get install -y iptables podman @@ -44,13 +44,6 @@ COPY --chown=$USERNAME ./assets/mise/config.toml /home/$USERNAME/.config/mise/co # Install stable Rust toolchain globally using mise (rustup management is automated). RUN mise install -# Install sqlx CLI for managing database migrations in sqlx projects. -RUN mise x -- cargo binstall -y cargo-nextest sqlx-cli - -# Finish Go setup. -RUN go install golang.org/x/tools/gopls@latest -RUN fish -c 'fish_add_path /home/$USERNAME/go/bin' - # Install Claude Code CLI. RUN curl -fsSL https://storage.googleapis.com/claude-code-dist-86c565f3-f756-42ad-8dfa-d59b1c096819/claude-code-releases/bootstrap.sh | bash RUN fish -c 'fish_add_path /home/$USERNAME/.local/bin' diff --git a/assets/mise/config.toml b/assets/mise/config.toml index 4c91a90..c401bf4 100644 --- a/assets/mise/config.toml +++ b/assets/mise/config.toml @@ -4,7 +4,6 @@ jujutsu = "latest" lazygit = "latest" rust = { version = "stable", components = "rust-analyzer,rust-docs,rustfmt,clippy" } -"cargo:cargo-binstall" = "latest" deno = "latest"