Simon Hänisch
Results
142
comments of
Simon Hänisch
```dockerfile FROM ghcr.io/puppeteer/puppeteer:latest ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD 1 USER root RUN npm install --global md-to-pdf USER pptruser ENTRYPOINT ["md-to-pdf"] CMD ["--help"] ``` this is what I came up with now and seems...
Might be better cause the Puppeteer image comes with Puppeteer pre-installed which we don't actually need. But I like that this way we don't need to define/maintain a list of...