Created
September 7, 2018 10:27
-
-
Save Pzixel/3b9b3f1ca983188be4d3ceb4f9f7c9af to your computer and use it in GitHub Desktop.
Solidity-Dotnet docker image
This file contains hidden or 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
FROM microsoft/dotnet:2.0-sdk AS build | |
ENV SOLIDITY_VERSION 0.4.24 | |
ENV SOLIDITY_DOWNLOAD_URL https://github.com/ethereum/solidity/releases/download/v$SOLIDITY_VERSION/solc-static-linux | |
RUN curl -SL $SOLIDITY_DOWNLOAD_URL --output /usr/bin/solc && chmod +x /usr/bin/solc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment