FROM python:3.6-alpine WORKDIR /app RUN apk add gcc postgresql-dev openssl-dev musl-dev git && \ git clone https://github.com/shacker/gtd.git . && \ pip install pipenv && \ pipenv --python 3.6 && \ pipenv install --dev ADD local.py project/. ADD init.sh . CMD [ "./init.sh" ]