From 487db6ce3a67ee9909b879cfc7410e0adafcbe2c Mon Sep 17 00:00:00 2001 From: Bobby Date: Fri, 10 Nov 2023 20:21:21 -0500 Subject: Fixing DB Mounts --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Dockerfile') 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"] -- cgit v1.2.3