set umask in entrypoint

This commit is contained in:
Christian Mäder 2019-11-26 12:09:26 +01:00
parent 7942e9edbe
commit 5e92352b0a
1 changed files with 1 additions and 0 deletions

View File

@ -1,5 +1,6 @@
#!/bin/bash
set -e
umask 002
# wait shortly and then run db migrations (retry on error)
while ! ./manage.py migrate 2>&1; do