diff options
| -rw-r--r-- | Dockerfile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -17,10 +17,12 @@ RUN pip install -r requirements.txt COPY . . -RUN python manage.py collectstatic --noinput +# RUN python manage.py collectstatic --noinput EXPOSE 8080 # replace APP_NAME with module name -CMD ["gunicorn", "--bind", ":8080", "--workers", "2", "thatcomputerscientist.wsgi"] +# CMD ["gunicorn", "--bind", ":8080", "--workers", "2", "thatcomputerscientist.wsgi"] +CMD ["python3", "manage.py", "runserver", ":8080"] + |
