diff options
| author | Bobby <[email protected]> | 2023-11-10 20:21:21 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2023-11-10 20:21:21 -0500 |
| commit | 487db6ce3a67ee9909b879cfc7410e0adafcbe2c (patch) | |
| tree | 22e20f4e2bf323758ae7a2ba351e1d2a4f0fee32 /Dockerfile | |
| parent | aa656ca7eed54cd3d0b4713c53ebe7fce671b8f7 (diff) | |
| download | thatcomputerscientist-487db6ce3a67ee9909b879cfc7410e0adafcbe2c.tar.xz thatcomputerscientist-487db6ce3a67ee9909b879cfc7410e0adafcbe2c.zip | |
Fixing DB Mounts
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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"] |
