Skip to content

Commit

Permalink
Fix BASE_IMAGE env-var use in build_image script
Browse files Browse the repository at this point in the history
  • Loading branch information
JonJagger committed Feb 2, 2025
1 parent 1863229 commit 9714257
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bin/build_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ build_image()
echo
echo "Building with --build-args"
echo " COMMIT_SHA=${COMMIT_SHA}"
echo " BASE_IMAGE=${CYBER_DOJO_RUNNER_BASE_IMAGE}"
echo " BASE_IMAGE=${BASE_IMAGE}"
echo "To change this run:"
echo "$ COMMIT_SHA=... CYBER_DOJO_RUNNER_BASE_IMAGE=cyberdojo/docker-base:... make image_${type}"
echo "$ COMMIT_SHA=... BASE_IMAGE=cyberdojo/docker-base:d6830c0@sha256:4be745d... make image_${type}"
echo

docker compose build server
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
env_file: [ .env ]
environment:
- CONTEXT=client
- SHOW_TEST_IDS=false
- SHOW_TEST_IDS=true
read_only: true
restart: no
tmpfs: /tmp
Expand Down

0 comments on commit 9714257

Please sign in to comment.