2024-07-14 19:17:02 +02:00
|
|
|
# syntax=docker/dockerfile:1.6
|
|
|
|
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
2024-10-30 00:40:24 +01:00
|
|
|
# NOTE: also update user_installation.sh
|
|
|
|
ARG HAILO_VERSION=4.19.0
|
|
|
|
|
2024-07-14 19:17:02 +02:00
|
|
|
# Build Python wheels
|
|
|
|
FROM wheels AS h8l-wheels
|
|
|
|
|
|
|
|
COPY docker/main/requirements-wheels.txt /requirements-wheels.txt
|
|
|
|
COPY docker/hailo8l/requirements-wheels-h8l.txt /requirements-wheels-h8l.txt
|
|
|
|
|
|
|
|
RUN sed -i "/https:\/\//d" /requirements-wheels.txt
|
|
|
|
|
|
|
|
# Create a directory to store the built wheels
|
|
|
|
RUN mkdir /h8l-wheels
|
|
|
|
|
|
|
|
# Build the wheels
|
|
|
|
RUN pip3 wheel --wheel-dir=/h8l-wheels -c /requirements-wheels.txt -r /requirements-wheels-h8l.txt
|
|
|
|
|
|
|
|
# Build HailoRT and create wheel
|
2024-08-09 23:53:33 +02:00
|
|
|
FROM wheels AS build-hailort
|
|
|
|
ARG TARGETARCH
|
2024-10-30 00:40:24 +01:00
|
|
|
ARG HAILO_VERSION
|
2024-08-09 23:53:33 +02:00
|
|
|
|
|
|
|
SHELL ["/bin/bash", "-c"]
|
2024-07-14 19:17:02 +02:00
|
|
|
|
|
|
|
# Install necessary APT packages
|
2024-08-09 23:53:33 +02:00
|
|
|
RUN apt-get -qq update \
|
|
|
|
&& apt-get -qq install -y \
|
|
|
|
apt-transport-https \
|
|
|
|
gnupg \
|
2024-07-14 19:17:02 +02:00
|
|
|
wget \
|
2024-08-09 23:53:33 +02:00
|
|
|
# the key fingerprint can be obtained from https://ftp-master.debian.org/keys.html
|
|
|
|
&& wget -qO- "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xA4285295FC7B1A81600062A9605C66F00D6C9793" | \
|
|
|
|
gpg --dearmor > /usr/share/keyrings/debian-archive-bullseye-stable.gpg \
|
|
|
|
&& echo "deb [signed-by=/usr/share/keyrings/debian-archive-bullseye-stable.gpg] http://deb.debian.org/debian bullseye main contrib non-free" | \
|
|
|
|
tee /etc/apt/sources.list.d/debian-bullseye-nonfree.list \
|
|
|
|
&& apt-get -qq update \
|
|
|
|
&& apt-get -qq install -y \
|
|
|
|
python3.9 \
|
|
|
|
python3.9-dev \
|
|
|
|
build-essential cmake git \
|
2024-07-14 19:17:02 +02:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
# Extract Python version and set environment variables
|
|
|
|
RUN PYTHON_VERSION=$(python3 --version 2>&1 | awk '{print $2}' | cut -d. -f1,2) && \
|
|
|
|
PYTHON_VERSION_NO_DOT=$(echo $PYTHON_VERSION | sed 's/\.//') && \
|
|
|
|
echo "PYTHON_VERSION=$PYTHON_VERSION" > /etc/environment && \
|
|
|
|
echo "PYTHON_VERSION_NO_DOT=$PYTHON_VERSION_NO_DOT" >> /etc/environment
|
|
|
|
|
|
|
|
# Clone and build HailoRT
|
|
|
|
RUN . /etc/environment && \
|
|
|
|
git clone https://github.com/hailo-ai/hailort.git /opt/hailort && \
|
|
|
|
cd /opt/hailort && \
|
2024-10-30 00:40:24 +01:00
|
|
|
git checkout v${HAILO_VERSION} && \
|
|
|
|
cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release && \
|
2024-07-14 19:17:02 +02:00
|
|
|
cmake --build build --config release --target libhailort && \
|
2024-10-30 00:40:24 +01:00
|
|
|
cmake --build build --config release --target hailortcli && \
|
|
|
|
cmake --build build --config release --target install
|
2024-07-14 19:17:02 +02:00
|
|
|
|
|
|
|
# Create a wheel file using pip3 wheel
|
|
|
|
RUN cd /opt/hailort/hailort/libhailort/bindings/python/platform && \
|
|
|
|
python3 setup.py bdist_wheel --dist-dir /hailo-wheels
|
|
|
|
|
2024-10-30 00:40:24 +01:00
|
|
|
RUN mkdir -p /rootfs/usr/local/lib /rootfs/usr/local/bin && \
|
|
|
|
cp /usr/local/lib/libhailort.so* /rootfs/usr/local/lib && \
|
|
|
|
cp /usr/local/bin/hailortcli /rootfs/usr/local/bin
|
|
|
|
|
2024-07-14 19:17:02 +02:00
|
|
|
# Use deps as the base image
|
|
|
|
FROM deps AS h8l-frigate
|
2024-10-30 00:40:24 +01:00
|
|
|
ARG HAILO_VERSION
|
2024-07-14 19:17:02 +02:00
|
|
|
|
|
|
|
# Copy the wheels from the wheels stage
|
|
|
|
COPY --from=h8l-wheels /h8l-wheels /deps/h8l-wheels
|
|
|
|
COPY --from=build-hailort /hailo-wheels /deps/hailo-wheels
|
2024-10-30 00:40:24 +01:00
|
|
|
COPY --from=build-hailort /rootfs/ /
|
2024-07-14 19:17:02 +02:00
|
|
|
|
|
|
|
# Install the wheels
|
|
|
|
RUN pip3 install -U /deps/h8l-wheels/*.whl
|
|
|
|
RUN pip3 install -U /deps/hailo-wheels/*.whl
|
|
|
|
|
|
|
|
# Copy base files from the rootfs stage
|
|
|
|
COPY --from=rootfs / /
|
|
|
|
|
|
|
|
# Set workdir
|
|
|
|
WORKDIR /opt/frigate/
|