Skip to content

Instantly share code, notes, and snippets.

@takatakata
takatakata / Dockerfile
Last active July 13, 2021 05:13 — forked from shichi-at-nttr/Dockerfile
Alpine Linux 3.11 で wkhtmltopdf を動かし、日本語WebページをPDF化する
# -------------------------------------------------------------
# 日本語のWebページをPDF化する
# -------------------------------------------------------------
# ビルド: docker build -t alpine-wkhtmltopdf .
# 実行: docker run --rm alpine-wkhtmltopdf https://www.google.co.jp - > test.pdf
# -------------------------------------------------------------
# ベースはこちら
# https://github.com/madnight/docker-alpine-wkhtmltopdf
FROM alpine:3.11