10 lines
229 B
Docker
10 lines
229 B
Docker
FROM python:3.8.2
|
|
|
|
RUN pip install django
|
|
WORKDIR /app
|
|
COPY config config
|
|
COPY manage.py manage.py
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
|
|
CMD ["python","manage.py","runserver", "0.0.0.0:8000"] |