django-cms/Dockerfile
2018-04-16 20:02:30 -05:00

12 lines
320 B
Docker

FROM python:2.7
WORKDIR /src
ADD ./cms /src
RUN set -ex \
&& curl -L https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh -o /usr/local/bin/wait-for-it.sh \
&& chmod +x /usr/local/bin/wait-for-it.sh \
&& pip install -r requirements.txt
CMD python manage.py runserver 0.0.0.0:8000