diff --git a/Dockerfile b/Dockerfile index 0f45777..28d35cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN npx -y playwright@1.59.1 install --with-deps chromium && \ ENV HOME=/home/node PATH=/home/node/.local/bin:$PATH WORKDIR /home/node/app -COPY --chown=node:node pyproject.toml README.md CLAWBENCH_V0_4_SPEC.md ./ +COPY --chown=node:node pyproject.toml README.md CLAWBENCH_V0_4_SPEC.md PARTNER_TRACE_SPEC.md ./ COPY --chown=node:node clawbench/ clawbench/ COPY --chown=node:node tasks-public/ tasks-public/ COPY --chown=node:node tasks-domain/ tasks-domain/ diff --git a/Dockerfile.main b/Dockerfile.main index d567d92..aec35bf 100644 --- a/Dockerfile.main +++ b/Dockerfile.main @@ -25,7 +25,7 @@ RUN npx -y playwright@1.59.1 install --with-deps chromium && \ ENV HOME=/home/node PATH=/home/node/.local/bin:$PATH WORKDIR /home/node/app -COPY --chown=node:node pyproject.toml README.md CLAWBENCH_V0_4_SPEC.md ./ +COPY --chown=node:node pyproject.toml README.md CLAWBENCH_V0_4_SPEC.md PARTNER_TRACE_SPEC.md ./ COPY --chown=node:node clawbench/ clawbench/ COPY --chown=node:node tasks-public/ tasks-public/ COPY --chown=node:node tasks-domain/ tasks-domain/ diff --git a/tests/test_dockerfiles.py b/tests/test_dockerfiles.py index fb77568..7ccdeab 100644 --- a/tests/test_dockerfiles.py +++ b/tests/test_dockerfiles.py @@ -8,7 +8,10 @@ def test_public_dockerfiles_copy_public_task_sets(): dockerfile = repo_root / dockerfile_name contents = dockerfile.read_text(encoding="utf-8") - assert "COPY --chown=node:node pyproject.toml README.md CLAWBENCH_V0_4_SPEC.md ./" in contents + assert ( + "COPY --chown=node:node pyproject.toml README.md CLAWBENCH_V0_4_SPEC.md " + "PARTNER_TRACE_SPEC.md ./" + ) in contents assert "COPY --chown=node:node tasks-public/ tasks-public/" in contents assert "COPY --chown=node:node tasks-domain/ tasks-domain/" in contents assert "COPY --chown=node:node tasks/ tasks/" not in contents