CleanUp+Werf

This commit is contained in:
D4rk4 2020-08-01 23:38:16 +02:00
parent 7c8239b942
commit 76170f973d
94 changed files with 119 additions and 5498 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM python:3.6-alpine
WORKDIR /app
RUN apk add git gcc musl-dev postgresql-dev && \
pip install pipenv && \
git clone https://github.com/shacker/gtd.git /app && \
pipenv --python 3.6 && \
pipenv install --dev
ADD local.py project/.
ADD entrypoint.sh .
RUN chmod +x entrypoint.sh
CMD [ "./entrypoint.sh" ]