Skip to content

Commit

Permalink
Merge pull request #541 from caffeineaddiction/master
Browse files Browse the repository at this point in the history
Added dev environment Dockerfile
  • Loading branch information
teward committed Mar 1, 2017
2 parents 6528713 + 723eea9 commit bba6429
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Dockerfile
@@ -0,0 +1,20 @@
FROM ubuntu
MAINTAINER CaffeineAddiction

RUN apt update && \
apt install build-essential python2.7 python-dev git wget -y && \
wget https://bootstrap.pypa.io/get-pip.py && \
python2.7 get-pip.py && \
cd ~ && \
env GIT_SSL_NO_VERIFY=true git clone https://github.com/Charcoal-SE/SmokeDetector.git && \
cd SmokeDetector && \
git submodule init && \
git submodule update && \
pip install -r requirements.txt --upgrade

RUN apt remove -y --purge build-essential python-dev wget && \
apt clean && \
rm -rf /root/* /var/lib/apt/lists/* /tmp/* /var/tmp/*


CMD ["/bin/bash"]

0 comments on commit bba6429

Please sign in to comment.