From f9792a617187cc8aa6663fd831e319c94588df45 Mon Sep 17 00:00:00 2001 From: chriseth Date: Fri, 17 Mar 2017 10:34:07 +0100 Subject: Create temporary docker image. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index f0a66255..900321d1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -177,10 +177,10 @@ install: - test "$TRAVIS_OS_NAME" != "linux" || (scripts/install_cmake.sh) - echo -n "$TRAVIS_COMMIT" > commit_hash.txt - test $SOLC_DOCKER != On || ( - docker build -t ethereum/solc:build -f scripts/Dockerfile . - tmp_container=$(docker create brainbot-com/solidity-static sh) + docker build -t tmp -f scripts/Dockerfile . + tmp_container=$(docker create tmp sh) mkdir -p upload - docker cp ${tmp_container}:/usr/local/bin/solc upload/ + docker cp ${tmp_container}:/usr/bin/solc upload/ ) before_script: -- cgit