Merge pull request #8 from sartography/chore/github_branches_to_docker_tags

Removes git commit message for now.
This commit is contained in:
Aaron Louie 2020-05-07 16:48:06 -04:00 committed by GitHub
commit ea58ee5f1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View File

@ -1,5 +1,3 @@
FROM postgres
ARG GIT_COMMIT=""
CMD echo 'echo "git commit = $GIT_COMMIT"' >> ./initdb.sh
COPY ./initdb.sh /docker-entrypoint-initdb.d/initdb.sh
EXPOSE 5432

View File

@ -7,7 +7,7 @@ REPO="sartography/cr-connect-$APP"
TAG=$(if [ "$TRAVIS_BRANCH" == "master" ]; then echo "latest"; else echo "$TRAVIS_BRANCH" ; fi)
COMMIT=${TRAVIS_COMMIT::8}
docker build -f Dockerfile -t "$REPO:$COMMIT" --build-arg GIT_COMMIT="$REPO:$COMMIT" . || exit 1
docker build -f Dockerfile -t "$REPO:$COMMIT" . || exit 1
docker tag "$REPO:$COMMIT" "$REPO:$TAG" || exit 1
docker tag "$REPO:$COMMIT" "$REPO:travis-$TRAVIS_BUILD_NUMBER" || exit 1
docker push "$REPO" || exit 1