shell-cell 1.4.0

Shell-Cell. CLI app to spawn and manage containerized shell environments
main:
  from_image: rust:1.93-trixie
  env:
    # claude code instalation path 
    - PATH="/root/.local/bin:$PATH"
  build:
    # Prepare Rust
    - rustup component add clippy
    - rustup component add rustfmt
    - apt-get update --fix-missing
    - apt-get -y install git curl wget
    # claude code
    - curl -fsSL https://claude.ai/install.sh | bash
    # zsh
    - apt install -y zsh
  workspace: shell_cell
  shell: /bin/zsh
  hang: while true; do sleep 3600; done
  config:
    mounts:
      - ./:/shell_cell