diff options
author | chriseth <chris@ethereum.org> | 2018-12-05 19:04:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-05 19:04:00 +0800 |
commit | a2105b1c5cfc4fcfc713a72aba549487abb60b45 (patch) | |
tree | 4f3e60873e8a2eb6b1a52ad2af398f4e24147756 /scripts/docker_deploy_manual.sh | |
parent | dd6327594f39d1eb33e83cf75cd0dc955bca2d71 (diff) | |
parent | 8d9fa0f4fa71bd66e0e68202381e29d37768a6bf (diff) | |
download | dexon-solidity-a2105b1c5cfc4fcfc713a72aba549487abb60b45.tar.gz dexon-solidity-a2105b1c5cfc4fcfc713a72aba549487abb60b45.tar.zst dexon-solidity-a2105b1c5cfc4fcfc713a72aba549487abb60b45.zip |
Merge pull request #5576 from ethereum/fixDockerScript
Fix manual deploy script for alpine.
Diffstat (limited to 'scripts/docker_deploy_manual.sh')
-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 |