Uploading chapter 11 remaining files

This commit is contained in:
muassif
2021-07-08 22:05:16 +04:00
committed by GitHub
parent 49e6811b81
commit 822894f3ea
20 changed files with 301 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM python:3.8
ENV PYTHONUNBUFFERED 1
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install -r requirements.txt
COPY . /app
CMD python manage.py runserver 0.0.0.0:8000