From 96e9eb7864a72fe36214b20932801d30a1a87d44 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Sat, 28 Oct 2017 21:39:30 +0300
Subject: [PATCH] Use Presentation, update README accordingly.

---
 Makefile   | 2 +-
 README.rst | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Makefile b/Makefile
index 4496184..0aa2ee9 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,7 @@ resume.odt: $(RESUME)
 	pandoc $(RESUME) -V papersize=$(PAPERSIZE) -o resume.odt
 
 clean:
-	rm -f resume.html resume.pdf resume.docx resume.odt *.log
+	git clean -fdX
 
 publish: all
 	rsync -az resume.html resume.pdf resume.odt resume.docx $(SERVER):$(DEST)
diff --git a/README.rst b/README.rst
index 002deb3..31df122 100644
--- a/README.rst
+++ b/README.rst
@@ -10,8 +10,8 @@ in my `about me <https://www.shore.co.il/blog/pages/about-me.html>`_ page.
 Dependencies
 ------------
 
-Make, pandoc, rsync, pdflatex (in Debian texlive-latex-base provides pdflatex,
-also texlive-fonts-recommended is needed for the fonts it provides).
+- `Docker <https://www.docker.com/>`_ (for building).
+- rsync (for uploading).
 
 Usage
 -----
@@ -23,13 +23,13 @@ To build the pdf version (same for odt, html, docx)
 
 .. code:: shell
 
-    make pdf
+    docker run -itv "$PWD:/project" adarnimrod/presentation make pdf
 
 To build all versions
 
 .. code:: shell
 
-    make all
+    docker run -itv "$PWD:/project" adarnimrod/presentation make
 
 To upload to webserver (includes rebuilding all versions)
 
-- 
GitLab