Revision 0ad15c736475d71116d62941444be60903c679e0 authored by Mark Mossberg on 10 August 2018, 20:07:39 UTC, committed by GitHub on 10 August 2018, 20:07:39 UTC
* Bump version

* Initial changelog changes

* Bump version in setup.py

* Add skeleton and externals

* Fill in 0.2.0 readme

* Updates
1 parent a0c2f76
Raw File
Dockerfile
FROM ubuntu:18.04
MAINTAINER JP Smith

RUN apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y install python3 python3-pip git

RUN apt-get install -y build-essential software-properties-common && \
    add-apt-repository -y ppa:ethereum/ethereum && \
    apt-get update && \
    apt-get install -y solc ethereum

RUN useradd -m manticore
USER manticore
WORKDIR /home/manticore
ENV HOME /home/manticore
ENV PATH $PATH:$HOME/.local/bin

RUN git clone https://github.com/trailofbits/manticore.git
RUN cd manticore && pip3 install --user .
CMD ["/bin/bash"]
back to top