1 2 3 4 5 6 7 8 9 10 11 12
FROM python:3.6 WORKDIR /home/cdb COPY requirements.txt requirements.txt RUN pip install -r ./requirements.txt RUN pip install gunicorn COPY utils utils COPY app app COPY migrations migrations COPY config.cfg ./config.cfg