Last active
December 13, 2017 14:36
-
-
Save zoutepopcorn/7985ba0d34aa14ab84df7c7f4cf9e231 to your computer and use it in GitHub Desktop.
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 python:latest | |
MAINTAINER nobody | |
RUN apt-get update | |
WORKDIR /home | |
RUN git clone https://github.com/jonluca/Anubis | |
WORKDIR /home/Anubis | |
RUN pip install -r requirements.txt | |
RUN pip install -e .[test] | |
RUN echo "echo 'https://github.com/jonluca/Anubis\n\nanubis -t reddit.com'" >> /root/.bashrc | |
CMD ["/bin/bash"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment