From ee8b68c4283bfb0f40d9c5546a4ad39acd887228 Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Tue, 26 Mar 2024 08:54:36 +0100 Subject: [PATCH] Make docker image name specific to track --- bin/run-in-docker.sh | 4 ++-- bin/run-tests-in-docker.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/run-in-docker.sh b/bin/run-in-docker.sh index 79a3ece..8eab863 100755 --- a/bin/run-in-docker.sh +++ b/bin/run-in-docker.sh @@ -33,7 +33,7 @@ output_dir=$(realpath "${3%/}") mkdir -p "${output_dir}" # Build the Docker image -docker build --rm -t exercism/test-runner . +docker build --rm -t exercism/j-test-runner . # Run the Docker image using the settings mimicking the production environment docker run \ @@ -43,4 +43,4 @@ docker run \ --mount type=bind,src="${solution_dir}",dst=/solution \ --mount type=bind,src="${output_dir}",dst=/output \ --mount type=tmpfs,dst=/tmp \ - exercism/test-runner "${slug}" /solution /output + exercism/j-test-runner "${slug}" /solution /output diff --git a/bin/run-tests-in-docker.sh b/bin/run-tests-in-docker.sh index 8078a67..47780c3 100755 --- a/bin/run-tests-in-docker.sh +++ b/bin/run-tests-in-docker.sh @@ -16,7 +16,7 @@ set -e # Build the Docker image -docker build --rm -t exercism/test-runner . +docker build --rm -t exercism/j-test-runner . # Run the Docker image using the settings mimicking the production environment docker run \ @@ -28,4 +28,4 @@ docker run \ --volume "${PWD}/bin/run-tests.sh:/opt/test-runner/bin/run-tests.sh" \ --workdir /opt/test-runner \ --entrypoint /opt/test-runner/bin/run-tests.sh \ - exercism/test-runner + exercism/j-test-runner