Migrate in the entrypoint, not in the docker build

This commit is contained in:
Yohann D'ANELLO 2020-11-04 13:51:41 +01:00
parent 4238e49c11
commit b0a3a22f83
2 changed files with 5 additions and 4 deletions

View File

@ -16,9 +16,7 @@ RUN pip install -r requirements.txt --no-cache-dir
COPY . /code/
RUN python manage.py collectstatic --noinput && \
python manage.py compilemessages && \
python manage.py migrate && \
python manage.py loaddata initial
python manage.py compilemessages
# Configure nginx
RUN mkdir /run/nginx

View File

@ -2,10 +2,13 @@
crond -l 0
python manage.py migrate
python manage.py loaddata initial
nginx
if [ "$CORRES2MATH_STAGE" = "prod" ]; then
gunicorn -b 0.0.0.0:8000 --workers=2 --threads=4 --worker-class=gthread corres2math.wsgi --access-logfile '-' --error-logfile '-';
else
./manage.py runserver 0.0.0.0:8000;
python manage.py runserver 0.0.0.0:8000;
fi