Skip to content

Instantly share code, notes, and snippets.

@shenron
shenron / Dockerfile
Last active January 3, 2025 07:05 — forked from daniel-j/README.md
Converts images in a directory to a comic/manga EPUB3 ebook. Can be used to convert extracted CBZ/CBR to EPUB3.
FROM python:3
RUN apt-get update && \
apt-get -y install libxml2-dev libxslt-dev python-dev && \
pip install lxml imagesize
WORKDIR /opt/
COPY . /opt