shell-cell 0.3.0

Shell-Cell. CLI app to spawn and manage containerized shell environments

rust-base:
  from: rust:1.93-trixie
  build:
    - apt-get update --fix-missing
    - apt-get -y install git curl wget

claudecode:
  from: +rust-base
  build:
    - curl -fsSL https://claude.ai/install.sh | bash
  env:
    # claude code instalation path 
    - PATH="/root/.local/bin:$PATH"

main:
  from: +claudecode
  workspace: shell_cell
  shell: /bin/bash
  hang: while true; do sleep 3600; done
  config:
    mounts:
      - ./:/shell_cell