2019-01-09 22:29:05 +00:00
|
|
|
FROM python:3.6
|
2019-01-09 21:58:11 +00:00
|
|
|
|
|
|
|
WORKDIR /home/cdb
|
|
|
|
|
|
|
|
COPY requirements.txt requirements.txt
|
|
|
|
RUN pip install -r ./requirements.txt
|
|
|
|
RUN pip install gunicorn
|
|
|
|
RUN pip install psycopg2
|
|
|
|
|
|
|
|
COPY runprodguni.sh ./
|
2019-01-28 20:48:07 +00:00
|
|
|
COPY rundebug.sh ./
|
2019-01-09 21:58:11 +00:00
|
|
|
RUN chmod +x runprodguni.sh
|
|
|
|
|
|
|
|
COPY setup.py ./setup.py
|
|
|
|
COPY app app
|
|
|
|
COPY migrations migrations
|
2019-01-28 20:48:07 +00:00
|
|
|
COPY config.cfg ./config.cfg
|