Add entrypoint script with wait function for db.

This commit is contained in:
Stephan Porada
2019-06-19 17:59:35 +02:00
parent cd8f6354fe
commit 8a792a17a6
3 changed files with 16 additions and 4 deletions

View File

@ -17,4 +17,10 @@ RUN pipenv install --skip-lock --system --dev
# copy project
COPY . /usr/src/app/
# add wait for it
RUN git clone https://github.com/vishnubob/wait-for-it.git /wait-for-it
RUN chmod a+x /wait-for-it/wait-for-it.sh
# add entry point
ADD ./django-entrypoint.sh /django-entrypoint.sh
RUN chmod a+x /django-entrypoint.sh

6
app/django-entrypoint.sh Normal file
View File

@ -0,0 +1,6 @@
#!/bin/bash -x
python manage.py collectstatic --noinput
python manage.py makemigrations --noinput
python manage.py migrate --noinput
exec "$@"