Dockerfile for NVIDIA Jetson devices (#2050)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
Glenn Jocher
2023-04-15 14:08:00 +02:00
committed by GitHub
parent 5c35dba22a
commit 47bd8b433b
6 changed files with 59 additions and 6 deletions

View File

@ -10,7 +10,7 @@ ADD https://ultralytics.com/assets/Arial.ttf https://ultralytics.com/assets/Aria
# Install linux packages
# g++ required to build 'tflite_support' package
RUN apt update
RUN apt update \
&& apt install --no-install-recommends -y gcc git zip curl htop libgl1-mesa-glx libglib2.0-0 libpython3-dev gnupg g++
# RUN alias python=python3
@ -29,7 +29,7 @@ ADD https://github.com/ultralytics/assets/releases/download/v0.0.0/yolov8n.pt /u
# Install pip packages
RUN python3 -m pip install --upgrade pip wheel
RUN pip install --no-cache . albumentations comet gsutil notebook tensorboard
RUN pip install --no-cache -e . albumentations comet tensorboard
# Set environment variables
ENV OMP_NUM_THREADS=1