# syntax=docker/dockerfile:1 FROM ghcr.io/linuxserver/baseimage-alpine:3.21 # set version label ARG BUILD_DATE ARG VERSION ARG KOMETA_VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="thespad" # environment settings ENV S6_STAGE2_HOOK=/init-hook ENV HOME="/config" \ PYTHONIOENCODING=utf-8 RUN \ echo "**** install packages ****" && \ apk add -U --update --no-cache --virtual=build-dependencies \ build-base \ libffi-dev \ libxml2-dev \ libzen-dev \ python3-dev && \ apk add -U --update --no-cache \ grep \ libjpeg \ libxslt \ python3 && \ if [ -z ${KOMETA_VERSION+x} ]; then \ KOMETA_VERSION=$(curl -s "https://api.github.com/repos/Kometa-Team/Kometa/commits/develop" \ | jq -r '. | .sha' | cut -c1-8); \ fi && \ mkdir -p /app/kometa && \ curl -o \ /tmp/kometa.tar.gz -L \ "https://github.com/Kometa-Team/Kometa/archive/${KOMETA_VERSION}.tar.gz" && \ tar xf \ /tmp/kometa.tar.gz -C \ /app/kometa --strip-components=1 && \ cd /app/kometa && \ 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/alpine-3.21/ -r requirements.txt && \ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ apk del --purge \ build-dependencies && \ rm -rf \ /tmp/* \ $HOME/.cache # add local files COPY root/ / # ports and volumes VOLUME /config ENTRYPOINT ["/init-kometa"]