From 28dff9c8ad3b2fd976a82266f6f1d28c4fc8dca3 Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Fri, 8 Nov 2019 08:51:39 -0600 Subject: [PATCH] fix it --- .automation/upload-docker.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.automation/upload-docker.sh b/.automation/upload-docker.sh index 687aeaca..4d562835 100755 --- a/.automation/upload-docker.sh +++ b/.automation/upload-docker.sh @@ -149,7 +149,7 @@ LoginToDocker() exit 1 else # SUCCESS - echo "Successfully authenticaterd to DockerHub!" + echo "Successfully authenticated to DockerHub!" fi } ################################################################################ @@ -180,7 +180,7 @@ BuildImage() ################### # 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 #