Last active
March 18, 2016 14:36
-
-
Save pchaigno/e4163be2bbf289145df3 to your computer and use it in GitHub Desktop.
Dockerfile to run Trinity in a container - based on https://github.com/ewindisch/trinity-docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu | |
RUN apt-get update | |
RUN apt-get install -qy git build-essential | |
WORKDIR /opt | |
RUN git clone https://github.com/kernelslacker/trinity | |
WORKDIR /opt/trinity | |
RUN ./configure | |
RUN make | |
RUN make install | |
WORKDIR /tmp | |
CMD ["--arch", "64"] | |
ENTRYPOINT ["/opt/trinity/trinity"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment