addon-tautulli/tautulli/Dockerfile
Franck Nijhof 0f768da930
🔨Rewrite of add-on (#214)
* ⬆️ Upgrades add-on base image to 12.0.0

* 🔨 Rewrite add-on

* 📚 Docs adjustments

* Tweak

* Remove now obsolete pyopenssl

* 🔒 Sign add-on with Codenotary Community Attestation Service (CAS)

* Add build deps
2022-06-10 16:27:25 +02:00

84 lines
2.3 KiB
Docker

ARG BUILD_FROM=ghcr.io/hassio-addons/debian-base/amd64:6.0.0
# hadolint ignore=DL3006
FROM ${BUILD_FROM}
# Set env
ENV TAUTULLI_VERSION 'v2.8.1'
# 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.30.2-1 \
python3-dev=3.9.2-3 \
python3-pip=20.3.4-4+deb11u1 \
python3=3.9.2-3\
\
&& 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}