mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix manual deploy script for alpine.
This commit is contained in:
parent
dd6327594f
commit
8d9fa0f4fa
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user