/solc
Last active
March 5, 2020 06:03
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 $@ |
Does it mean this solution no longer valid?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
note: this just uses the official docker image
ethereum/solc
now -- the dockerfile from earlier revisions was removed