Dockerfile 169 B

123456789
  1. FROM python:3.5
  2. WORKDIR /app
  3. COPY . /app
  4. # hadolint ignore=DL3013
  5. RUN pip install django --no-cache-dir
  6. ENTRYPOINT ["python", "manage.py", "runserver", "0.0.0.0:80"]