jstrieb / paperify

Transform any document, web page, or eBook into a research paper (ChatGPT not required)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker setup

kevinlinxc opened this issue · comments

It would be nice to not have to figure out all the dependencied, esp on windows. Would it be possible to create a docker setup for paperify?

I created a jstrieb/paperify Docker image. The following command will now work.

docker run \
  --rm \
  -it \
  --volume "$(pwd)/build":/root/build \
  jstrieb/paperify \
    --from-format html \
    "https://research.swtch.com/bell-labs" \
    build/cox.pdf

In general, any paperify [...] command can be replaced with docker run jstrieb/paperify [...], plus a few additional Docker options to make sure the generated paper can be extracted from the container.