diff --git a/Docker/Dockerfile b/Docker/Dockerfile index 6cce1a12bf4..b75cf49b42c 100644 --- a/Docker/Dockerfile +++ b/Docker/Dockerfile @@ -2,6 +2,7 @@ FROM eosio/builder as builder ARG branch=master ARG symbol=SYS +RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install openssl ca-certificates libcurl4 libcurl4-openssl-dev libusb-1.0-0-dev RUN git clone -b $branch https://github.com/EOSIO/eos.git --recursive \ && cd eos && echo "$branch:$(git rev-parse HEAD)" > /etc/eosio-version \ && cmake -H. -B"/tmp/build" -GNinja -DCMAKE_BUILD_TYPE=Release -DWASM_ROOT=/opt/wasm -DCMAKE_CXX_COMPILER=clang++ \