let's test this sucker

This commit is contained in:
ducoterra
2020-04-22 15:13:04 -04:00
parent 73bba50262
commit 22843802b7
13 changed files with 240 additions and 24 deletions

View File

@@ -2,6 +2,9 @@ FROM python:3.8.2
RUN pip install django
WORKDIR /app
RUN django-admin startproject config .
COPY config config
COPY manage.py manage.py
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
CMD ["python","manage.py","runserver","8080"]
CMD ["python","manage.py","runserver","8000"]