From 8d9fa0f4fa71bd66e0e68202381e29d37768a6bf Mon Sep 17 00:00:00 2001 From: chriseth Date: Mon, 3 Dec 2018 17:12:50 +0100 Subject: [PATCH] Fix manual deploy script for alpine. --- scripts/docker_deploy_manual.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/docker_deploy_manual.sh b/scripts/docker_deploy_manual.sh index 0393d22de..30dd267cd 100755 --- a/scripts/docker_deploy_manual.sh +++ b/scripts/docker_deploy_manual.sh @@ -37,6 +37,12 @@ tag_and_push() rm -rf .git docker build -t "$image":build -f scripts/Dockerfile . tmp_container=$(docker create "$image":build sh) + +# Alpine image +mkdir -p upload +docker cp ${tmp_container}:/usr/bin/solc upload/solc-static-linux +docker build -t "$image":build-alpine -f scripts/Dockerfile_alpine . + if [ "$branch" = "develop" ] then tag_and_push build nightly