Files
django-gallery/Dockerfile
T

12 lines
316 B
Docker
Raw Normal View History

2018-03-08 18:55:03 -06:00
FROM python:2.7
WORKDIR /src
ADD . /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 \
2018-03-08 22:29:30 -06:00
&& pip install -r requirements.txt
2018-03-08 18:55:03 -06:00
CMD python manage.py runserver 0.0.0.0:8000