mirror of
https://github.com/linuxserver/docker-lazylibrarian.git
synced 2026-01-09 06:50:49 +08:00
71 lines
2.1 KiB
Docker
71 lines
2.1 KiB
Docker
# syntax=docker/dockerfile:1
|
||
|
||
FROM ghcr.io/linuxserver/unrar:arm64v8-latest AS unrar
|
||
|
||
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-noble
|
||
|
||
# set version label
|
||
ARG BUILD_DATE
|
||
ARG VERSION
|
||
ARG LAZYLIBRARIAN_COMMIT
|
||
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
||
LABEL maintainer="chbmb"
|
||
|
||
RUN \
|
||
echo "**** install build packages ****" && \
|
||
apt-get update && \
|
||
apt-get install -y \
|
||
libjpeg-turbo8-dev \
|
||
zlib1g-dev && \
|
||
echo "**** install runtime packages ****" && \
|
||
apt-get install -y \
|
||
ghostscript \
|
||
libjpeg-turbo8 \
|
||
libmagic1 \
|
||
python3-venv \
|
||
zlib1g && \
|
||
echo "**** install app ****" && \
|
||
mkdir -p \
|
||
/app/lazylibrarian && \
|
||
if [ -z ${LAZYLIBRARIAN_COMMIT+x} ]; then \
|
||
LAZYLIBRARIAN_COMMIT=$(curl -sX GET "https://gitlab.com/api/v4/projects/9317860/repository/commits/master" \
|
||
| awk '/id/{print $4;exit}' FS='[""]'); \
|
||
fi && \
|
||
echo "Installing from commit ${LAZYLIBRARIAN_COMMIT}" && \
|
||
echo "${LAZYLIBRARIAN_COMMIT}" > /defaults/version.txt && \
|
||
curl -o \
|
||
/tmp/lazylibrarian.tar.gz -L \
|
||
"https://gitlab.com/LazyLibrarian/LazyLibrarian/-/archive/{$LAZYLIBRARIAN_COMMIT}/LazyLibrarian-{$LAZYLIBRARIAN_COMMIT}.tar.gz" && \
|
||
tar xf \
|
||
/tmp/lazylibrarian.tar.gz -C \
|
||
/app/lazylibrarian --strip-components=1 && \
|
||
cd /app/lazylibrarian && \
|
||
python3 -m venv /lsiopy && \
|
||
pip install -U --no-cache-dir \
|
||
pip \
|
||
wheel && \
|
||
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/ubuntu/ . && \
|
||
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/ubuntu/ Levenshtein && \
|
||
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
|
||
echo "**** cleanup ****" && \
|
||
apt-get -y purge \
|
||
libjpeg-turbo8-dev \
|
||
python3-pip \
|
||
zlib1g-dev && \
|
||
apt-get -y autoremove && \
|
||
rm -rf \
|
||
/tmp/* \
|
||
/var/lib/apt/lists/* \
|
||
/var/tmp/* \
|
||
/root/.cache
|
||
|
||
# add local files
|
||
COPY root/ /
|
||
|
||
# add unrar
|
||
COPY --from=unrar /usr/bin/unrar-ubuntu /usr/bin/unrar
|
||
|
||
# ports and volumes
|
||
EXPOSE 5299
|
||
VOLUME /config
|