Skip to content

Instantly share code, notes, and snippets.

@guilledk
Created February 26, 2022 15:38
Show Gist options
  • Select an option

  • Save guilledk/babe885b5b3fabc99df6381e4453d66b to your computer and use it in GitHub Desktop.

Select an option

Save guilledk/babe885b5b3fabc99df6381e4453d66b to your computer and use it in GitHub Desktop.
eosio cdt 1.4.1
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