diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000000..cbc158d3970b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,20 @@ +# docker pull andmyhacks/trufflehog + +FROM python:2 + +MAINTAINER Keith Hoodlet + +RUN mkdir -p /etc/trufflehog +WORKDIR /etc/trufflehog + +COPY . /etc/trufflehog/ + +RUN apt-get update + +RUN pip install truffleHog + +RUN chmod +x truffleHog.py +RUN ln -s /etc/trufflehog/truffleHog.py /usr/bin/trufflehog + +RUN mkdir -p /etc/trufflehog/history +WORKDIR /etc/trufflehog/history