DockerFile included

This commit is contained in:
2021-05-14 15:37:26 +05:30
parent e5c01d892b
commit 6f43dc6ee4
2 changed files with 15 additions and 1 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
RUN python manage.py migrate
CMD python /app/manage.py runserver