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