Added Dockerfile. (#240)

* Added Dockerfile.

* Changes as requested by @japesinator.
This commit is contained in:
David Manouchehri
2017-05-24 16:49:37 -05:00
committed by JP Smith
parent 124c9d6de5
commit d87c983b98
+15
View File
@@ -0,0 +1,15 @@
FROM ubuntu:16.04
MAINTAINER JP Smith
RUN apt-get -y update && \
DEBIAN_FRONTEND=noninteractive apt-get -y install z3 python-pip git && \
git clone https://github.com/trailofbits/manticore.git && \
cd manticore && \
pip install .
RUN useradd -m manticore
USER manticore
WORKDIR /home/manticore
ENV HOME /home/manticore
CMD ["/bin/bash"]