A "Best of the Best Practices" (BOBP) guide to developing in Python.
- "Build tools for others that you want to be built for you." - Kenneth Reitz
- "Simplicity is alway better than functionality." - Pieter Hintjens
FROM python:3.6-alpine | |
RUN pip install gunicorn | |
COPY . /app | |
WORKDIR /app | |
RUN python setup.py develop | |
VOLUME ['/conf'] |