File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ This repository provides a toolkit for [ITBench](https://github.com/IBM/itbench)
1010## 🛠️ Build and Push (Multi-Arch)
1111
1212``` bash
13- bench_runner_name=" icr .io/agent-bench /bench-runner-base:0.0.1"
14- agent_harness_name=" icr .io/agent-bench /agent-harness-base:0.0.1"
13+ bench_runner_name=" ghcr .io/ibm/itbench-utilities /bench-runner-base:0.0.1"
14+ agent_harness_name=" ghcr .io/ibm/itbench-utilities /agent-harness-base:0.0.1"
1515
1616# Build and push bench-runner base image
1717docker buildx build --platform linux/amd64,linux/arm64 \
Original file line number Diff line number Diff line change 11FROM python:3.11-slim
22
3+ LABEL org.opencontainers.image.source=https://github.com/IBM/ITBench-Utilities
4+
35RUN apt update -y && apt install -y curl gnupg2
46RUN mkdir /etc/agent-benchmark
57COPY itbench_utilities /etc/agent-benchmark/itbench_utilities
Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ while [[ $# -gt 0 ]]; do
1616 esac
1717done
1818
19+ export PYTHONUNBUFFERED=1
20+
1921python itbench_utilities/agent_harness/main.py \
2022 --agent_directory /etc/ciso-agent \
2123 -i /tmp/agent-manifest.json \
Original file line number Diff line number Diff line change 11FROM python:3.11-slim
22
3+ LABEL org.opencontainers.image.source=https://github.com/IBM/ITBench-Utilities
4+
35RUN apt update -y && apt install -y curl gnupg2 unzip
46RUN mkdir /etc/agent-benchmark
57COPY itbench_utilities /etc/agent-benchmark/itbench_utilities
You can’t perform that action at this time.
0 commit comments