diff options
author | Kristian Lyngstol <kly@kly.no> | 2016-11-07 20:15:26 +0100 |
---|---|---|
committer | Kristian Lyngstol <kly@kly.no> | 2016-11-07 20:15:26 +0100 |
commit | 1645bca3aed66c2121fe6d8aaeea8405906723e2 (patch) | |
tree | b4c00cde77a2bbc8255d1b295b962b14926889ac /build/test | |
parent | fc1b028e555a3703fbc643965620dea919f3fe19 (diff) |
Scaffolding for functional templating :D
Diffstat (limited to 'build/test')
-rw-r--r-- | build/test/gondul-templating-test.Dockerfile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/build/test/gondul-templating-test.Dockerfile b/build/test/gondul-templating-test.Dockerfile new file mode 100644 index 0000000..80c09c0 --- /dev/null +++ b/build/test/gondul-templating-test.Dockerfile @@ -0,0 +1,10 @@ +FROM debian:jessie +RUN apt-get update +RUN apt-get -y install \ + python3-jinja2 \ + python3-requests + +RUN mkdir -p /opt/gondul + +CMD /opt/gondul/templating/templating.py +EXPOSE 8080 |