2024-08-14 14:49:46 +01:00

70 lines
2.0 KiB
Docker
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# syntax=docker/dockerfile:1
FROM ghcr.io/linuxserver/unrar:latest AS unrar
FROM ghcr.io/linuxserver/baseimage-ubuntu: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 \
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