Merge pull request #250 from rocky/docker-bionic-fixes

Correct bionic apt dependency hell...
pull/254/merge
Bernhard Mueller 7 years ago committed by GitHub
commit 74a35ed75f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      Dockerfile

@ -3,13 +3,17 @@ FROM ubuntu:bionic
COPY . /opt/mythril
RUN apt-get update \
&& apt-get install -y software-properties-common \
&& apt-get install -y \
build-essential \
python-pip-whl=9.0.1-2 \
python3-pip=9.0.1-2 \
python3-setuptools \
software-properties-common \
&& add-apt-repository -y ppa:ethereum/ethereum \
&& apt-get update \
&& apt-get install -y \
solc \
libssl-dev \
python3-pip=9.0.1-2 \
python3-dev \
pandoc \
git \

Loading…
Cancel
Save