Add Django Debug Toolbar

This commit is contained in:
c0de
2018-03-08 22:29:30 -06:00
committed by David Todd
parent 51a117ca5f
commit e4163e8af1
5 changed files with 11 additions and 3 deletions

View File

@@ -6,7 +6,6 @@ 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 \
&& pip install -r requirements.txt \
&& python manage.py collectstatic --noinput
&& pip install -r requirements.txt
CMD python manage.py runserver 0.0.0.0:8000