aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 3c91da9e..12d04373 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -17,6 +17,10 @@ RUN pip install -r requirements.txt
COPY . .
+# Migrations
+RUN python manage.py makemigrations
+RUN python manage.py migrate
+
RUN python manage.py collectstatic --noinput