Skip to content
Snippets Groups Projects
build 602 B
Newer Older
  • Learn to ignore specific revisions
  • #!/bin/bash
    # for posterity
    # SOURCE_BRANCH: the name of the branch or the tag that is currently being tested.
    # SOURCE_COMMIT: the SHA1 hash of the commit being tested.
    # COMMIT_MSG: the message from the commit being tested and built.
    # DOCKER_REPO: the name of the Docker repository being built.
    # DOCKERFILE_PATH: the dockerfile currently being built.
    # DOCKER_TAG: the Docker repository tag being built.
    # IMAGE_NAME: the name and tag of the Docker repository being built. (This variable is a combination of DOCKER_REPO:DOCKER_TAG.)
    
    docker build -t $IMAGE_NAME --build-arg MB_EDITION=$MB_EDITION .