Skip to content

Instantly share code, notes, and snippets.

@pchaigno
Last active March 18, 2016 14:36
Show Gist options
  • Save pchaigno/e4163be2bbf289145df3 to your computer and use it in GitHub Desktop.
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
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