OCI image to make claude code portable; the model is being setup to use through Google Vertex AI API.
Additional functionality is provided through the claudio-skills marketplace.
To build the container run the command:
make oci-buildThis builds for the native architecture of the current platform.
You can customize the image name and tag:
IMAGE_REPO=ghcr.io/myorg/claudio IMAGE_TAG=latest make oci-buildBy default, the Makefile uses Podman. To use Docker instead:
CONTAINER_MANAGER=docker make oci-buildAvailable targets:
oci-build- Build container image for native architectureoci-push- Push container imageoci-tag- Tag existing image with new tagoci-manifest-build- Create multi-arch manifest from arch-tagged imagesoci-manifest-push- Push manifest to registry
During the image build, claudio clones claudio-skills into /home/default/claudio-skills/ and:
- Fetches the specified git ref — a branch, tag, or pull request head
- Runs tool installers — iterates over
claudio-plugin/tools/*/install.shand executes each one (e.g. jq, python dependencies) - Generates plugin configs — registers skills and tools so Claude can discover them at runtime
The git ref is controlled by two build args:
CS_REF_TYPE— one ofbranch,tag, orpr(default:branch)CS_REF— the branch name, tag name, or PR number (default:main)
# From a branch (default)
CS_REF_TYPE=branch CS_REF=main make oci-build
# From a tag
CS_REF_TYPE=tag CS_REF=v0.1.0 make oci-build
# From a pull request
CS_REF_TYPE=pr CS_REF=9 make oci-buildWhen developing changes to claudio-skills that affect a downstream image (e.g. aipcc-claudio), you can test end-to-end before merging:
- Open a PR in claudio-skills (e.g. PR #9)
- Build the claudio base image referencing that PR:
This produces a local image tagged
CS_REF_TYPE=pr CS_REF=9 make oci-build
quay.io/aipcc-cicd/claudio:v1.0.0-dev. - In the downstream repo, point the
FROMline at that local image (or tag it to match the expected base tag) and build:# In aipcc-claudio make oci-build - Run the resulting container and verify the changes work as expected.
In order to make claudio OpenShift compliant the default user for the container is default, it is also part of the root group, under some circumstances when mapping host volumes podman is not able to access the volume (even with the right permissions), to avoid that siatuion we suggest when running locally to use --user 0 to enforce default behavior by podman.
Claudio supports mounting your local project directory for interactive development. When you mount a directory to /home/default/workdir, claudio will automatically change to that directory before starting the Claude session, allowing you to work with your local files.
Example mounting your current directory:
podman run -it --rm --user 0 \
-v ${PWD}:/home/default/workdir:z \
-v claudio-gcp:/root/.config/gcloud:Z \
-v claudio-mcp-slack:/root/claude/mcp/slack:Z \
-e GITLAB_TOKEN='...' \
-e ANTHROPIC_VERTEX_PROJECT_ID=... \
-e ANTHROPIC_VERTEX_PROJECT_QUOTA=... \
-e SLACK_MCP_XOXC_TOKEN='xoxc-...' \
-e SLACK_MCP_XOXD_TOKEN='xoxd-...' \
-e K8S_MCP_KUBECONFIG_PATH=/opt/k8s/kubeconfig \
quay.io/redhat-aipcc/claudio:v1.0.0-devThis allows you to use claudio with your local codebase, making file edits, running commands, and interacting with your project files directly.
# Create a volume to hold the auth for gcloud
podman volume create claudio-gcp
# Create a volume to hold cache for mcp slack
podman volume create claudio-mcp-slack
# Run claudio
podman run -it --rm --user 0 \
-v ${PWD}/kubecofing:/home/claudio/.kube/config:z \
# Optional
-v claudio-gcp:/home/claudio/.config/gcloud:Z \
-e GITLAB_TOKEN='...' \
-e ANTHROPIC_VERTEX_PROJECT_ID=... \
-e ANTHROPIC_VERTEX_PROJECT_QUOTA=... \
-e SLACK_XOXC_TOKEN='xoxc-...' \
-e SLACK_XOXD_TOKEN='xoxd-...' \
quay.io/aipcc-cicd/claudio:v1.0.0-devClaudio on a host where user is already logged in on gcloud:
# Run claudio
podman run -it --rm -user 0 \
-v ${PWD}/kubecofing:/home/claudio/.kube/config:z \
-v /home/$USER/.conf/gcloud:/home/claudio/.config/gcloud:z \
-e GITLAB_TOKEN='...' \
-e ANTHROPIC_VERTEX_PROJECT_ID=... \
-e ANTHROPIC_VERTEX_PROJECT_QUOTA=... \
-e SLACK_XOXC_TOKEN='xoxc-...' \
-e SLACK_XOXD_TOKEN='xoxd-...' \
quay.io/aipcc-cicd/claudio:v1.0.0-devClaudio one-time prompt
# Run claudio
podman run -it --rm -user 0 \
-v ${PWD}/kubecofing:/home/claudio/.kube/config:z \
-v /home/$USER/.conf/gcloud:/home/claudio/.config/gcloud:z \
-e GITLAB_TOKEN='...' \
-e ANTHROPIC_VERTEX_PROJECT_ID=... \
-e ANTHROPIC_VERTEX_PROJECT_QUOTA=... \
-e SLACK_XOXC_TOKEN='xoxc-...' \
-e SLACK_XOXD_TOKEN='xoxd-...' \
quay.io/aipcc-cicd/claudio:v1.0.0-dev \
-p "do something for me Claudio"