Skip to content
This repository was archived by the owner on Nov 23, 2022. It is now read-only.

Commit b1242ee

Browse files
committed
Fix docker image labeling
1 parent b1f4c42 commit b1242ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ after_success:
2525
- export TAG=`if [ "$TRAVIS_BRANCH" == "master" ]; then echo "latest"; else echo $TRAVIS_BRANCH ; fi`
2626
- export DEBUG_TAG=`if [ "$TRAVIS_BRANCH" == "master" ]; then echo "debug_latest"; else echo "debug_$TRAVIS_BRANCH" ; fi`
2727
- export VERSION=`node -pe "require('./package.json').version"`
28-
- docker build --pull -t --label "version=$VERSION" exoframe/server:$TAG .
28+
- docker build --pull --label "version=$VERSION" -t exoframe/server:$TAG .
2929
- if [ -z "$TRAVIS_TAG" ]; then echo "No tag, skipping"; else docker tag exoframe/server:$TAG exoframe/server:$TRAVIS_TAG; fi
3030
# build debug docker image
3131
- docker build --pull -f Dockerfile-debug --label "version=$VERSION" -t exoframe/server:$DEBUG_TAG .

0 commit comments

Comments
 (0)