Skip to content

Commit

Permalink
BUG: Fix ShellCheck issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanjohnson-lab authored and Ivan-E-Johnson committed Mar 4, 2024
1 parent 3722e33 commit 66e26f4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build_brain_mask_tool_docker.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/bin/bash

# Define variables
DOCKERFILE_NAME="Dockerfile_BrainMaskTool"
IMAGE_TAG="brainmasktool:v0.1"
IMAGE_LABEL="brainmasktool"

# Build the docker image for the brain mask tool
docker build --tag $IMAGE_TAG --label $IMAGE_LABEL --file $DOCKERFILE_NAME $(pwd)
docker build --tag "${IMAGE_TAG}" --label "${IMAGE_LABEL}" --file "${DOCKERFILE_NAME}" "$(pwd)"

0 comments on commit 66e26f4

Please sign in to comment.