Renaming the project to Pillar.

This commit is contained in:
2015-08-31 18:22:50 +02:00
parent b75482b0d6
commit 1830d04400
13 changed files with 11 additions and 29 deletions

27
docker/Dockerfile Normal file
View File

@@ -0,0 +1,27 @@
FROM debian
MAINTAINER Francesco Siddi <francesco@blender.org>
RUN apt-get update && apt-get install -y \
python \
python-dev \
python-pip \
git \
nano
RUN mkdir /data
RUN mkdir /data/www
RUN mkdir /data/www/pillar_dev
RUN pip install virtualenv
RUN virtualenv /data/venv
#RUN . /data/venv/bin/activate
#RUN pip install -r requirements.txt
VOLUME /data/www/pillar_dev
ENV MONGO_HOST='mongo_pillar'
EXPOSE 5000
#ENTRYPOINT . /data/venv/bin/activate; \
#cd /data/www/pillar_dev; \