feat(rust): add rust compiler

This commit is contained in:
2019-08-19 18:28:06 +02:00
parent 520c35bbfe
commit f7af2d5785
4 changed files with 30 additions and 6 deletions

View File

@ -1,17 +1,17 @@
# VERSION
# If no version is specified as a parameter of make, the value latest
# is taken.
VERSION:=$(or ${TRAVIS_TAG}, ${TRAVIS_TAG}, latest)
VERSION:=$(or ${TRAVIS_TAG}, latest)
# DOCKER_USER
DOCKER_USER:=volkerraschek
build:
image-build:
docker build \
--no-cache \
--tag ${DOCKER_USER}/build-image:${VERSION} \
.
push: build
image-push: image-build
docker login --username ${DOCKER_USER} --password ${DOCKER_PASSWORD}
docker push ${DOCKER_USER}/build-image:${VERSION}