Renaming the project to Pillar.
This commit is contained in:
27
docker/Dockerfile
Normal file
27
docker/Dockerfile
Normal 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; \
|
Reference in New Issue
Block a user