Skip to content

Commit

Permalink
fix: typo in build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
nishaq503 committed Jul 26, 2024
1 parent b45ca7e commit c945149
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repo_root=$(git rev-parse --show-toplevel)
# The Dockerfile and .dockerignore files are copied to the repository root before building the image
cd ${repo_root}
cp ./${tool_dir}/${tool_name}/Dockerfile .
cp .gitingore .dockerignore
cp .gitignore .dockerignore
docker build . -t ${tag}
rm Dockerfile .dockerignore
cd ${cur_dir}
2 changes: 1 addition & 1 deletion transforms/dimension-reduction-tool/build-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repo_root=$(git rev-parse --show-toplevel)
# The Dockerfile and .dockerignore files are copied to the repository root before building the image
cd ${repo_root}
cp ./${tool_dir}/${tool_name}/Dockerfile .
cp .gitingore .dockerignore
cp .gitignore .dockerignore
docker build . -t ${tag}
rm Dockerfile .dockerignore
cd ${cur_dir}

0 comments on commit c945149

Please sign in to comment.