Skip to content

Commit

Permalink
Merge pull request #15 from nishaq503/fix/typo
Browse files Browse the repository at this point in the history
Fixed typo in docker build script
  • Loading branch information
Nicholas-Schaub authored Jul 25, 2024
2 parents 6581599 + 1b044b5 commit 829890e
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 15 deletions.
10 changes: 4 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Other files
**/**/.venv

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down Expand Up @@ -157,19 +160,14 @@ cython_debug/
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
.idea/

# vscode
.vscode

# test data directory
data

# local manifests
src/polus/plugins/_plugins/manifests/*

# allow python scripts inside manifests dir
!src/polus/plugins/_plugins/manifests/*.py

#macOS
*.DS_Store
Expand Down
2 changes: 1 addition & 1 deletion clustering/feature-subsetting-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}
2 changes: 1 addition & 1 deletion clustering/hdbscan-clustering-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}
2 changes: 1 addition & 1 deletion clustering/k-means-clustering-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}
2 changes: 1 addition & 1 deletion clustering/outlier-removal-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}
2 changes: 1 addition & 1 deletion features/feature-segmentation-eval-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}
2 changes: 1 addition & 1 deletion formats/tabular-converter-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}
2 changes: 1 addition & 1 deletion transforms/tabular-merger-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}
2 changes: 1 addition & 1 deletion transforms/tabular-thresholding-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}
2 changes: 1 addition & 1 deletion utils/rxiv-download-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 829890e

Please sign in to comment.