-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy paththor.Dockerfile
More file actions
58 lines (52 loc) · 1.48 KB
/
thor.Dockerfile
File metadata and controls
58 lines (52 loc) · 1.48 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
ARG BASE_IMAGE=nvcr.io/nvidia/pytorch:25.08-py3
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 \
libgl1 \
libatlas-base-dev \
libopenblas-dev \
build-essential \
python3-setuptools \
make \
cmake \
nasm \
git \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get clean
WORKDIR /workspace
COPY pyproject.toml .
# Set to get precompiled jetson wheels
RUN export PIP_INDEX_URL=https://pypi.jetson-ai-lab.io/sbsa/cu130 && \
export PIP_TRUSTED_HOST=pypi.jetson-ai-lab.io && \
pip3 install --upgrade pip setuptools && \
pip3 install -e .[thor]
# Build and install decord
RUN cd /tmp && \
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 /tmp && \
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 && \
cd /workspace && \
rm -rf /tmp/ffmpeg /tmp/decord
# Set decord library path environment variable
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/root/.local/decord/