aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorBobby <[email protected]>2023-11-10 20:21:21 -0500
committerBobby <[email protected]>2023-11-10 20:21:21 -0500
commit487db6ce3a67ee9909b879cfc7410e0adafcbe2c (patch)
tree22e20f4e2bf323758ae7a2ba351e1d2a4f0fee32 /Dockerfile
parentaa656ca7eed54cd3d0b4713c53ebe7fce671b8f7 (diff)
downloadthatcomputerscientist-487db6ce3a67ee9909b879cfc7410e0adafcbe2c.tar.xz
thatcomputerscientist-487db6ce3a67ee9909b879cfc7410e0adafcbe2c.zip
Fixing DB Mounts
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile
index 6d2a9ed5..4227af52 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -22,12 +22,12 @@ RUN pip install -r requirements.txt
COPY . /shifoo/
-# RUN python manage.py collectstatic --noinput
+RUN python manage.py collectstatic --noinput
-# RUN python manage.py makemigrations
+RUN python manage.py makemigrations
-# RUN python manage.py migrate
+RUN python manage.py migrate
-# EXPOSE 8080
+EXPOSE 8080
-# CMD ["gunicorn", "--bind", ":8080", "--workers", "2", "thatcomputerscientist.wsgi"]
+CMD ["gunicorn", "--bind", ":8080", "--workers", "2", "thatcomputerscientist.wsgi"]