Revision be0141e501d3f40b77b111f9451cb2be8a2d33d4 authored by Yan Ivnitskiy on 01 December 2017, 21:14:56 UTC, committed by GitHub on 01 December 2017, 21:14:56 UTC
1 parent 77b0542
Raw File
Dockerfile
FROM ubuntu:16.04
MAINTAINER JP Smith

RUN apt-get -y update && \
	DEBIAN_FRONTEND=noninteractive apt-get -y install 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"]
back to top