Title
Message
Create new category
What is the title of your new category?
Edit page index title
What is the title of the page index?
Edit category
What is the new title of your category?
Edit link
What is the new title and URL of your link?
Custom docker image
Copy Markdown
Open in ChatGPT
Open in Claude
Custom docker image
Check if Docker Installed: Ensure that Docker is installed on your system. You can verify this by running:
xxxxxxxxxxdocker --versionCreate Dockerfile:
Below is an exmaple, specific to Infoworks you need to create user 'myuser' with UID 185.
x
# Specify base image, exampleFROM rockylinux:9 # Update the system and install necessary toolsRUN dnf -y update && \ dnf -y install epel-release && \ dnf -y install s-nail sendmail ksh fuse3 fuse3-libs curl java-1.8.0-openjdk openssh-clients gnupg2 pinentry telnet bind-utils jq sudo vi --allowerasing && \ dnf clean all && \ ln -s /usr/bin/python3 /usr/bin/python # Add Microsoft repository and install blobfuse2RUN sudo rpm -Uvh https://packages.microsoft.com/config/rhel/8/packages-microsoft-prod.rpm && \ dnf -y install blobfuse2 # Create user 'myuser' with UID 185RUN useradd -u 185 -m myuser # Install SnowSQLRUN curl -O https://sfc-repo.snowflakecomputing.com/snowsql/bootstrap/1.3/linux_x86_64/snowflake-snowsql-1.3.0-1.x86_64.rpm && \ dnf install -y snowflake-snowsql-1.3.0-1.x86_64.rpm && \ rm -f snowflake-snowsql-1.3.0-1.x86_64.rpm # Install Azure CLIRUN curl https://packages.microsoft.com/config/rhel/9/prod.repo | tee /etc/yum.repos.d/microsoft.repo && \ dnf install -y azure-cli # Update Azure CLIRUN dnf update azure-cli -y # Install azcopyRUN curl -L https://aka.ms/downloadazcopy-v10-linux -o azcopy_linux_amd64.tar.gz && \ tar -xzf azcopy_linux_amd64.tar.gz --strip-components=1 && \ mv azcopy /usr/local/bin/ && \ chmod +x /usr/local/bin/azcopy && \ rm azcopy_linux_amd64.tar.gz # Set PATH for the userENV PATH="/usr/bin:${PATH}" # Set the working directory to /tmpWORKDIR /tmpBuild the Docker Image
xxxxxxxxxxdocker build -t custom-bash-snowsql-openssh-azurecli-rocky:latest .Running the Docker image locally
xxxxxxxxxxdocker run -it --rm custom-bash-snowsql-openssh-azurecli-rocky:latestSave the Docker Image as Tarball
xxxxxxxxxxdocker save -o custom-bash-snowsql-openssh-azurecli-rocky.tar custom-bash-snowsql-openssh-azurecli-rocky:latestExample : Pushing the image to Azure Container registry
# Log in to Azure ACRaz acr login --name myacr # Tag the image for ACRdocker tag custom-bash-snowsql-openssh-azurecli-rocky:latest myacr.azurecr.io/custom-bash-snowsql-openssh-azurecli-rocky:latest # Push the image to ACRdocker push myacr.azurecr.io/custom-bash-snowsql-openssh-azurecli-rocky:latestConfiguring Custom docker image for Workflow bash script

VariableType to search · ESC to discard
GlossaryType to search · ESC to discard
InsertType to search · ESC to discard
No matches
Last updated on
Was this page helpful?
For more details, refer to our Knowledge Base and Best Practices!
For help, contact our support team!
© UNIPHORE TECHNOLOGIES 2025 | Confidential
Discard Changes
Do you want to discard your current changes and overwrite with the template?
Archive Synced Block
Message
Create new Template
What is this template's title?
Delete Template
Message