htmltoadf 0.1.10

An HTML to Atlassian Document Format (ADF) converter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
FROM rust:1.68-buster as builder

WORKDIR /usr/src/html2adf
COPY . .

RUN cargo install --path .

FROM debian:buster-slim
COPY --from=builder /usr/local/cargo/bin/html2adf /usr/local/bin/html2adf

ENTRYPOINT ["html2adf"]
CMD []