Guest User

Untitled

a guest
Dec 14th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. FROM python:3.6-slim-stretch
  2.  
  3. RUN \
  4. echo "weasyprint dependencies" \
  5. && apt-get update \
  6. && apt-get install -y --no-install-recommends \
  7. libcairo2 \
  8. libpango1.0-0 \
  9. libpangocairo-1.0.0 \
  10. libgdk-pixbuf2.0-0 \
  11. shared-mime-info
  12.  
  13. RUN \
  14. echo "imagemagick dependencies" \
  15. && apt-get update \
  16. && apt-get install -y --no-install-recommends \
  17. ghostscript \
  18. imagemagick
  19.  
  20. RUN pip install weasyprint==0.41
  21.  
  22. COPY letter.html .
  23.  
  24. RUN weasyprint letter.html letter.pdf
  25.  
  26. RUN convert -density 300 -depth 8 -quality 85 letter.pdf letter.png
Add Comment
Please, Sign In to add comment