# --- FILE: Podmanfile --- # Base Podman image FROM quay.io/podman/stable:latest # Install dependencies for Claude Code + dev tools RUN dnf -y install \ git \ curl \ python3 \ python3-pip \ gcc \ make \ vim \ && dnf clean all # Install Claude Code (placeholder: adjust to real installer) # For example, if Claude Code is a Python package: # RUN pip3 install claude-code RUN curl -sSL https://example.com/claude-code-install.sh | bash # Create workspace WORKDIR /workspace # Default entrypoint CMD [ "bash" ]