-
-
Save konradkonrad/38a02157ddb379e831ea0642a7ee6585 to your computer and use it in GitHub Desktop.
solc from docker (sort of)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Usage: | |
# ./solc [options] inputfile > outfile | |
# Notes: | |
# - file i/o is limited to the current directory | |
# - this works with the pyethereum solc_wrapper | |
docker run -i --rm --user $(id -u):$(id -g) -v $(pwd):/tmp --workdir /tmp ethereum/solc:0.4.18 $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does it mean this solution no longer valid?