Skip to content

Instantly share code, notes, and snippets.

@guilledk
Created February 26, 2022 14:05
Show Gist options
  • Save guilledk/ea9e99a30ba47c9ff3f92a7b7774f15a to your computer and use it in GitHub Desktop.
Save guilledk/ea9e99a30ba47c9ff3f92a7b7774f15a to your computer and use it in GitHub Desktop.
eosio cdt 1.5.0
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.5.0/eosio.cdt_1.5.0-1_amd64.deb && \
apt-get install -y ./eosio.cdt_1.5.0-1_amd64.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