coins-demo-minikube/Dockerfile
2020-08-02 19:08:42 +02:00

10 lines
280 B
Docker

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" ]