Skip to content

Commit

Permalink
Force docker tags to lower case (#16)
Browse files Browse the repository at this point in the history
* ensure LAMBCI_REPO is lower case in LAMBCI_DOCKER_TAG
  • Loading branch information
mj1618 authored and mhart committed Jul 12, 2017
1 parent 05c63f9 commit 01b90b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common.sh
Expand Up @@ -12,7 +12,7 @@ export LAMBCI_CLONE_REPO="${LAMBCI_CLONE_REPO:-$LAMBCI_REPO}"
export LAMBCI_CHECKOUT_BRANCH="${LAMBCI_CHECKOUT_BRANCH:-$LAMBCI_BRANCH}"
export LAMBCI_DOCKER_CMD="${LAMBCI_DOCKER_CMD:-$SCRIPT_DIR/runbuild.sh}"
export LAMBCI_DOCKER_FILE="${LAMBCI_DOCKER_FILE:-Dockerfile.test}"
export LAMBCI_DOCKER_TAG="${LAMBCI_DOCKER_TAG:-lambci-ecs-${LAMBCI_REPO}:${LAMBCI_COMMIT}}"
export LAMBCI_DOCKER_TAG="${LAMBCI_DOCKER_TAG:-lambci-ecs-${LAMBCI_REPO,,}:${LAMBCI_COMMIT}}"

export CONTAINER_ID=$(cat /proc/self/cgroup | grep "cpu:/" | sed 's/\([0-9]\):cpu:\/docker\///g')

Expand Down

0 comments on commit 01b90b4

Please sign in to comment.