Skip to content

Instantly share code, notes, and snippets.

@Pzixel
Created September 7, 2018 10:27
Show Gist options
  • Save Pzixel/3b9b3f1ca983188be4d3ceb4f9f7c9af to your computer and use it in GitHub Desktop.
Save Pzixel/3b9b3f1ca983188be4d3ceb4f9f7c9af to your computer and use it in GitHub Desktop.
Solidity-Dotnet docker image
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