Slimmed down Dockerfile, with `myth` set as the entrypoint.

Also pinning to bionic, to avoid surprises with versions bumps.
pull/217/head
Justin Wilson 7 years ago
parent a435965b78
commit fa7a76ca6b
  1. 20
      Dockerfile

@ -1,19 +1,21 @@
FROM ubuntu:rolling
FROM ubuntu:bionic
COPY . .
COPY . /opt/mythril
RUN apt-get update \
&& apt-get install -y software-properties-common \
&& add-apt-repository -y ppa:ethereum/ethereum \
&& apt-get update \
&& apt-get install -y solc \
&& apt-get install -y libssl-dev \
&& apt-get install -y python3-pip=9.0.1-2 python3-dev \
&& apt-get install -y \
solc \
libssl-dev \
python3-pip=9.0.1-2 \
python3-dev \
pandoc \
git \
&& ln -s /usr/bin/python3 /usr/local/bin/python \
# && pip3 install --upgrade pip \
&& apt-get install -y pandoc \
&& apt-get install -y git \
&& cd /opt/mythril \
&& pip3 install -r requirements.txt \
&& python setup.py install
CMD []
ENTRYPOINT ["/usr/local/bin/myth"]

Loading…
Cancel
Save