aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-09-05 19:25:07 -0400
committerBobby <[email protected]>2022-09-05 19:25:07 -0400
commit10dccc6faa8c95b34a96cdfeae6daa335fe9b76d (patch)
tree1da99e8b123768c8a28913ed88cb1431522501cb /Dockerfile
parent49b2cf3987378971d05cdcac996c69d7f862461e (diff)
downloadthatcomputerscientist-10dccc6faa8c95b34a96cdfeae6daa335fe9b76d.tar.xz
thatcomputerscientist-10dccc6faa8c95b34a96cdfeae6daa335fe9b76d.zip
Added captcha to register page
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