From 3c3f2694708fb56bc3d39ec9502ce46d7735240f Mon Sep 17 00:00:00 2001 From: spawnia Date: Sat, 14 Apr 2018 11:57:17 +0200 Subject: [PATCH] Correct md2pdf alias to work non-interactively --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cbbcb31..75ea703 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ RUN apt-get update \ && rm -rf /var/lib/apt/lists/* # Wrap pdf creation in a xvfb-run to enable headless pdf creation in the container -RUN printf '#!/bin/bash\nexec xvfb-run md2resume pdf "$@"' >> /usr/bin/md2pdf \ +RUN printf '#!/bin/bash\nxvfb-run md2resume pdf "$@"' >> /usr/bin/md2pdf \ && chmod +x /usr/bin/md2pdf # Enables continously calling a command and piping the output to STDOUT, viewable via docker logs