Created
February 26, 2022 15:38
-
-
Save guilledk/babe885b5b3fabc99df6381e4453d66b to your computer and use it in GitHub Desktop.
eosio cdt 1.4.1
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 ubuntu:18.04 | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| RUN apt-get update && \ | |
| apt-get install -y \ | |
| git \ | |
| wget \ | |
| make \ | |
| cmake \ | |
| build-essential | |
| RUN wget https://github.com/EOSIO/eosio.cdt/releases/download/v1.4.1/eosio.cdt-1.4.1.x86_64.deb && \ | |
| apt-get install -y ./eosio.cdt-1.4.1.x86_64.deb | |
| RUN mkdir -p /root/target | |
| WORKDIR /root/target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment