8 lines
162 B
Docker
8 lines
162 B
Docker
|
FROM debian:buster
|
||
|
|
||
|
RUN apt-get update \
|
||
|
&& apt-get -y install --no-install-recommends calibre \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
ENTRYPOINT ["calibredb"]
|