Minimal `.gitlab-ci.yml`: ```yaml image: docker:latest services: - docker:dind build: script: - docker run --rm --volume "`pwd`:/data" --user `id -u`:`id -g` pandoc/latex README.md -o README.pdf artifacts: paths: - "*.pdf" ``` See: https://pandoc.org/installing.html#docker