From 43bc29bb10f425e4c12d1bdfab93a8eb8e807a93 Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Thu, 12 Nov 2015 22:53:55 -0500 Subject: [PATCH] ENH: Add a Dockerfile. --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0adfe00 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM debian:jessie + +RUN apt-get update +RUN apt-get install -y libwebp5 libfontconfig libjpeg62 libssl1.0.0 libicu52 curl + +COPY . decktape +WORKDIR decktape +RUN curl \ + -L https://astefanutti.github.io/decktape/downloads/phantomjs-linux-debian8-x86-64 \ + -o bin/phantomjs +ENTRYPOINT ["/bin/bash"]