aboutsummaryrefslogtreecommitdiffstats
path: root/docker-entrypoint.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker-entrypoint.sh')
-rwxr-xr-xdocker-entrypoint.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh
deleted file mode 100755
index 34b6867..0000000
--- a/docker-entrypoint.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-echo "Running migrations..."
-./wait-for-it.sh db:5432 --timeout=30 --strict -- echo "Postgres is up"
-
-cd /app
-python manage.py migrate
-python manage.py collectstatic --noinput
-exec gunicorn --bind ':3000' --worker-tmp-dir /dev/shm --workers 3 config.wsgi:application