-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathorin.Dockerfile
More file actions
67 lines (60 loc) · 2 KB
/
Copy pathorin.Dockerfile
File metadata and controls
67 lines (60 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
ARG BASE_IMAGE=nvcr.io/nvidia/l4t-jetpack:r36.4.0
FROM ${BASE_IMAGE}
RUN apt-get update && \
apt-get install -y --no-install-recommends \
python3 \
python3-pip \
python3-dev \
libsm6 \
libxext6 \
ffmpeg \
libhdf5-serial-dev \
libtesseract-dev \
libgtk-3-0 \
libtbb12 \
libtbb2 \
libatlas-base-dev \
libopenblas-dev \
build-essential \
python3-setuptools \
make \
cmake \
nasm \
git \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get clean
WORKDIR /workspace
# Install cuDSS (CUDA Deep Neural Network library)
RUN wget https://developer.download.nvidia.com/compute/cudss/0.6.0/local_installers/cudss-local-tegra-repo-ubuntu2204-0.6.0_0.6.0-1_arm64.deb && \
dpkg -i cudss-local-tegra-repo-ubuntu2204-0.6.0_0.6.0-1_arm64.deb && \
cp /var/cudss-local-tegra-repo-ubuntu2204-0.6.0/cudss-*-keyring.gpg /usr/share/keyrings/ && \
chmod 777 /tmp && \
apt-get update && \
apt-get -y install cudss && \
rm -f cudss-local-tegra-repo-ubuntu2204-0.6.0_0.6.0-1_arm64.deb && \
rm -rf /var/lib/apt/lists/* && \
apt-get clean
COPY pyproject.toml .
# Set to get precompiled jetson wheels
RUN export PIP_INDEX_URL=https://pypi.jetson-ai-lab.io/jp6/cu126 && \
export PIP_TRUSTED_HOST=pypi.jetson-ai-lab.io && \
pip3 install --upgrade pip setuptools && \
pip3 install -e .[orin]
# Build and install decord
RUN git clone https://git.ffmpeg.org/ffmpeg.git && \
cd ffmpeg && \
git checkout n4.4.2 && \
./configure --enable-shared --enable-pic --prefix=/usr && \
make -j$(nproc) && \
make install && \
cd .. && \
git clone --recursive https://github.com/dmlc/decord && \
cd decord && \
mkdir build && cd build && \
cmake .. -DCMAKE_BUILD_TYPE=Release && \
make && \
cd ../python && \
python3 setup.py install --user && \
rm -rf ffmpeg decord
# Set decord library path environment variable
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/root/.local/decord/