diff options
-rwxr-xr-x | scripts/docker_deploy_manual.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/docker_deploy_manual.sh b/scripts/docker_deploy_manual.sh index 0393d22d..30dd267c 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 |