blob: 3bf7c16f5bed337f62e92397d91a08a175380349 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env sh
set -e
docker build -t ethereum/solc:build -f scripts/Dockerfile .
tmp_container=$(docker create ethereum/solc:build sh)
mkdir -p upload
docker cp ${tmp_container}:/usr/bin/solc upload/
|