Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typo in docker build script #15

Merged
merged 2 commits into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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}
Loading