This commit is contained in:
Lucas Gravley 2019-11-08 08:51:39 -06:00
parent cf83d5dc08
commit 28dff9c8ad

View file

@ -149,7 +149,7 @@ LoginToDocker()
exit 1 exit 1
else else
# SUCCESS # SUCCESS
echo "Successfully authenticaterd to DockerHub!" echo "Successfully authenticated to DockerHub!"
fi fi
} }
################################################################################ ################################################################################
@ -180,7 +180,7 @@ BuildImage()
################### ###################
# Build the image # # Build the image #
################### ###################
BUILD_CMD=$(docker build --no-cache -t "$IMAGE_REPO:$IMAGE_VERSION" "$DOCKERFILE_PATH" 2>&1) BUILD_CMD=$(docker build --no-cache -t "$IMAGE_REPO:$IMAGE_VERSION" -f "$DOCKERFILE_PATH" . 2>&1)
####################### #######################
# Load the error code # # Load the error code #