mirror of
https://github.com/evgen-app/evg-app-back.git
synced 2024-11-25 10:13:45 +03:00
14 lines
219 B
Docker
14 lines
219 B
Docker
|
FROM python:3.8-slim-buster
|
||
|
ENV PYTHONUNBUFFERED 1
|
||
|
|
||
|
|
||
|
RUN mkdir /app
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY requirements.txt /app/
|
||
|
RUN pip3 install -r requirements.txt
|
||
|
|
||
|
COPY . /app/
|
||
|
|
||
|
RUN ["python", "manage.py", "runserver", "0.0.0.0:8000"]
|