aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
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"]