diff --git a/services/clsi/app/js/DockerRunner.js b/services/clsi/app/js/DockerRunner.js index 039cb5acd6..647d26d6d5 100644 --- a/services/clsi/app/js/DockerRunner.js +++ b/services/clsi/app/js/DockerRunner.js @@ -230,7 +230,9 @@ const DockerRunner = { } // set the path based on the image year const match = image.match(/:([0-9]+)\.[0-9]+/) - const year = match ? match[1] : '2014' + // the rolling build does not follow our .. convention + const year = match ? match[1] : 'rolling' + env.PATH = `/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/texlive/${year}/bin/x86_64-linux/` const options = { Cmd: command,