Skip to content

Commit

Permalink
Use absolute path for docker volume binding
Browse files Browse the repository at this point in the history
  • Loading branch information
thegoldgoat committed Aug 16, 2024
1 parent 8dcbd87 commit aacac23
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
#!/bin/bash
set -e

# cd to script's directory
# cd to script's directory, and then root of project
cd "$(dirname "$0")"
cd ..
cd ..
cd ..

proj_root="../../.."
proj_root="$(pwd)"

# STEP1: Build container
docker build -t cicero_compilers_benchmarks $proj_root/cicero_compiler_cpp/Docker
Expand Down

0 comments on commit aacac23

Please sign in to comment.