diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3b3cbdd --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM python:3 +ENV PYTHONDONTWRITEBYTECODE=1 +ENV PYTHONUNBUFFERED=1 +COPY requirements/dev-requirements.txt / +RUN pip install -r requirements/dev-requirements.txt +CMD python ./manage.py runserver \ No newline at end of file