10 lines
280 B
Docker
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" ]
|