Skip to content

Commit 772072f

Browse files
authored
chore: move to ghcr.io (#6)
Signed-off-by: Takumi Yanagawa <yana@jp.ibm.com>
1 parent 1bc2b04 commit 772072f

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
1717
docker buildx build --platform linux/amd64,linux/arm64 \

docker/agent-harness/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
FROM python:3.11-slim
22

3+
LABEL org.opencontainers.image.source=https://github.com/IBM/ITBench-Utilities
4+
35
RUN apt update -y && apt install -y curl gnupg2
46
RUN mkdir /etc/agent-benchmark
57
COPY itbench_utilities /etc/agent-benchmark/itbench_utilities

docker/agent-harness/entrypoint.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ while [[ $# -gt 0 ]]; do
1616
esac
1717
done
1818

19+
export PYTHONUNBUFFERED=1
20+
1921
python itbench_utilities/agent_harness/main.py \
2022
--agent_directory /etc/ciso-agent \
2123
-i /tmp/agent-manifest.json \

docker/bench-runner/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
FROM python:3.11-slim
22

3+
LABEL org.opencontainers.image.source=https://github.com/IBM/ITBench-Utilities
4+
35
RUN apt update -y && apt install -y curl gnupg2 unzip
46
RUN mkdir /etc/agent-benchmark
57
COPY itbench_utilities /etc/agent-benchmark/itbench_utilities

0 commit comments

Comments
 (0)