Skip to content

Commit

Permalink
Reorder Dockerfile for reduced rebuilding (ultralytics#358)
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher authored Jan 14, 2023
1 parent 4962733 commit 46ed5ff
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
10 changes: 6 additions & 4 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@

# Start FROM NVIDIA PyTorch image https://ngc.nvidia.com/catalog/containers/nvidia:pytorch
FROM nvcr.io/nvidia/pytorch:22.12-py3

# Remove torch nightly and install torch stable
RUN rm -rf /opt/pytorch # remove 1.2GB dir
RUN pip uninstall -y torchtext torch torchvision
RUN pip cache purge
RUN pip install --no-cache torch torchvision

# Downloads to user config dir
ADD https://ultralytics.com/assets/Arial.ttf https://ultralytics.com/assets/Arial.Unicode.ttf /root/.config/Ultralytics/
Expand All @@ -22,10 +27,7 @@ RUN git clone https://github.com/ultralytics/ultralytics /usr/src/ultralytics

# Install pip packages
RUN python -m pip install --upgrade pip wheel
RUN pip uninstall -y Pillow torchtext torch torchvision
RUN pip install --no-cache ultralytics albumentations comet gsutil notebook Pillow>=9.1.0 \
'opencv-python<4.6.0.66' \
--extra-index-url https://download.pytorch.org/whl/cu113
RUN pip install --no-cache ultralytics albumentations comet gsutil notebook 'opencv-python<4.6.0.66'

# Set environment variables
ENV OMP_NUM_THREADS=1
Expand Down
4 changes: 1 addition & 3 deletions docker/Dockerfile-arm64
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,8 @@ RUN git clone https://github.com/ultralytics/ultralytics /usr/src/ultralytics
COPY requirements.txt .
RUN python3 -m pip install --upgrade pip wheel
RUN pip install --no-cache ultralytics gsutil notebook \
tensorflow-aarch64
tensorflow-aarch64 onnx onnx-simplifier onnxruntime coremltools openvino-dev
# tensorflowjs \
# onnx onnx-simplifier onnxruntime \
# coremltools openvino-dev \

# Cleanup
ENV DEBIAN_FRONTEND teletype
Expand Down
3 changes: 2 additions & 1 deletion docker/Dockerfile-cpu
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ COPY requirements.txt .
RUN python3 -m pip install --upgrade pip wheel
RUN pip install --no-cache ultralytics albumentations gsutil notebook \
coremltools onnx onnx-simplifier onnxruntime tensorflow-cpu tensorflowjs \
# openvino-dev \
openvino-dev \
# tensorflowjs \
--extra-index-url https://download.pytorch.org/whl/cpu

# Cleanup
Expand Down

0 comments on commit 46ed5ff

Please sign in to comment.