feat(scaffolder): cookiecutter templater wip

Co-authored-by: Ben Lambert <ben@blam.sh>
This commit is contained in:
Ivan Shmidt
2020-06-23 11:56:56 +02:00
parent 602f06b2ff
commit bc15e7a710
8 changed files with 50 additions and 26 deletions
@@ -0,0 +1,11 @@
FROM alpine:3.7
RUN apk add --update \
git \
python \
python-dev \
py-pip \
g++ && \
pip install cookiecutter && \
apk del g++ py-pip python-dev && \
rm -rf /var/cache/apk/*