diffferent method of installing calibre
This commit is contained in:
parent
9c7dcea812
commit
33bb732a74
19
Dockerfile
19
Dockerfile
@ -8,7 +8,7 @@ LABEL build_version="FFDL-Auto version:- ${VERSION} Calibre: ${CALIBRE_RELEASE}
|
||||
|
||||
ENV PUID="911" \
|
||||
PGID="911"
|
||||
|
||||
CALIBRE_INSTALLER_SOURCE_CODE_URL https://raw.githubusercontent.com/kovidgoyal/calibre/master/setup/linux-installer.py
|
||||
RUN set -x && \
|
||||
apk update && \
|
||||
apk add --no-cache --upgrade \
|
||||
@ -38,21 +38,8 @@ RUN set -x && \
|
||||
abc
|
||||
|
||||
RUN echo "**** install calibre ****" && \
|
||||
set -x && \
|
||||
mkdir -p \
|
||||
/opt/calibre && \
|
||||
if [ -z ${CALIBRE_RELEASE+x} ]; then \
|
||||
CALIBRE_RELEASE=$(curl -sX GET "https://api.github.com/repos/kovidgoyal/calibre/releases/latest" \
|
||||
| jq -r .tag_name); \
|
||||
fi && \
|
||||
CALIBRE_VERSION="$(echo ${CALIBRE_RELEASE} | cut -c2-)" && \
|
||||
CALIBRE_URL="https://download.calibre-ebook.com/${CALIBRE_VERSION}/calibre-${CALIBRE_VERSION}-x86_64.txz" && \
|
||||
curl -o \
|
||||
/tmp/calibre-tarball.txz -L \
|
||||
"$CALIBRE_URL" && \
|
||||
tar xvf /tmp/calibre-tarball.txz -C \
|
||||
/opt/calibre && \
|
||||
dbus-uuidgen > /etc/machine-id
|
||||
wget -O- ${CALIBRE_INSTALLER_SOURCE_CODE_URL} | python -c "import sys; main=lambda:sys.stderr.write('Download failed\n'); exec(sys.stdin.read()); main(install_dir='/opt', isolated=True)" && \
|
||||
rm -rf /tmp/calibre-installer-cache
|
||||
|
||||
RUN echo "**** cleanup ****" && \
|
||||
rm -rf \
|
||||
|
@ -1 +1 @@
|
||||
2022.03.25-25
|
||||
2022.03.25-29
|
||||
|
Loading…
Reference in New Issue
Block a user