addon-tautulli/tautulli/Dockerfile
renovate[bot] e1222318de
⬆️ Update ghcr.io/hassio-addons/debian-base Docker tag to v7.3.4 (#347)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-08 17:17:11 +02:00

85 lines
2.4 KiB
Docker

ARG BUILD_FROM=ghcr.io/hassio-addons/debian-base:7.3.4
# hadolint ignore=DL3006
FROM ${BUILD_FROM}
ENV \
PIP_BREAK_SYSTEM_PACKAGES=1 \
TAUTULLI_VERSION="v2.13.4"
# Set shell
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Sets working directory
WORKDIR /opt
# Copy Python requirements file
COPY requirements.txt /tmp/
# Setup base
ARG BUILD_ARCH=amd64
RUN \
apt-get update \
&& apt-get install -y --no-install-recommends \
build-essential=12.9 \
git=1:2.39.2-1.1 \
python3-dev=3.11.2-1+b1 \
python3-pip=23.0.1+dfsg-1 \
python3=3.11.2-1+b1 \
\
&& pip install \
--no-cache-dir \
--prefer-binary \
--extra-index-url "https://www.piwheels.org/simple" \
-r /tmp/requirements.txt \
\
&& git clone --branch "${TAUTULLI_VERSION}" --depth=1 \
https://github.com/Tautulli/Tautulli.git /opt \
\
&& find /usr/local \
\( -type d -a -name test -o -name tests -o -name '__pycache__' \) \
-o \( -type f -a -name '*.pyc' -o -name '*.pyo' \) \
-exec rm -rf '{}' + \
\
&& apt-get purge -y --auto-remove \
build-essential \
git \
python3-dev \
python3-pip \
\
&& rm -fr \
/opt/{.git,.github,init-scripts} \
/tmp/* \
/var/{cache,log}/* \
/var/lib/apt/lists/*
# Copy root filesystem
COPY rootfs /
# Build arguments
ARG BUILD_ARCH
ARG BUILD_DATE
ARG BUILD_DESCRIPTION
ARG BUILD_NAME
ARG BUILD_REF
ARG BUILD_REPOSITORY
ARG BUILD_VERSION
# Labels
LABEL \
io.hass.name="${BUILD_NAME}" \
io.hass.description="${BUILD_DESCRIPTION}" \
io.hass.arch="${BUILD_ARCH}" \
io.hass.type="addon" \
io.hass.version=${BUILD_VERSION} \
maintainer="Franck Nijhof <frenck@addons.community>" \
org.opencontainers.image.title="${BUILD_NAME}" \
org.opencontainers.image.description="${BUILD_DESCRIPTION}" \
org.opencontainers.image.vendor="Home Assistant Community Add-ons" \
org.opencontainers.image.authors="Franck Nijhof <frenck@addons.community>" \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.url="https://addons.community" \
org.opencontainers.image.source="https://github.com/${BUILD_REPOSITORY}" \
org.opencontainers.image.documentation="https://github.com/${BUILD_REPOSITORY}/blob/main/README.md" \
org.opencontainers.image.created=${BUILD_DATE} \
org.opencontainers.image.revision=${BUILD_REF} \
org.opencontainers.image.version=${BUILD_VERSION}