This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Function to display help message | |
| function display_help { | |
| echo "Usage: $0 [options]" | |
| echo "" | |
| echo "Options:" | |
| echo "-h, --help Display this help message" | |
| echo "-i, --image-name IMAGE_NAME Specify the image name to use" | |
| echo "-t, --image-tag IMAGE_TAG Specify the image tag to use" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [tool.poetry] | |
| name = "ibmodules" | |
| version = "0.1.0" | |
| description = "" | |
| authors = ["Iron Bank Pipelines and Operations <ironbank@dsop.io>"] | |
| packages = [ | |
| { include = "ironbank" } | |
| ] |