# Issues building Yolov8 trainer

Source: https://forum.modalai.com/topic/4846/issues-building-yolov8-trainer
Category: VOXL 2 and VOXL 2 Mini (https://forum.modalai.com/category/26/voxl-2-and-voxl-2-mini)
Tags: voxl-2-mini
Posted: 2025-10-30 22:23:15 UTC by jeremyrbrown5
Replies: 2 · Views: 1182

## jeremyrbrown5 · 2025-10-30 22:23:15 UTC

Hello

We having issues building the docker image. Attached is a picture of the errors we are encountering. 
![Voxl trainer Error.png](https://forum.modalai.com/assets/uploads/files/1761862866105-voxl-trainer-error.png) 

We have tried install the dependencies individually with little luck. Any assistance would be greatly appreciated

Thank you

## Reply by Robbie McCue (ModalAI staff) · 2025-10-31 16:44:00 UTC

@jeremyrbrown5 

Hi Jeremy,

i just replicated this issue and was able to build the container by making the following changes to the docker file. Try adding these on your end and see if this resolves the issue.

```
FROM nvidia/cuda:11.8.0-cudnn8-devel-ubuntu22.04

WORKDIR /app

RUN echo '@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@'
RUN echo '@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@'
RUN echo '@@@@@@@@@@@@@@@@@@@@@@@@@,                     ,&@@@@@@@@@@@@@@@@@@@@@'
RUN echo '@@@@@@@@@@@@@@@@@@&          %@@@@@@@@@@@@@@@@@@@@(   .@@@@@@@@@@@@@@@'
RUN echo '@@@@@@@@@@@@@@(        ,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#  @@@@@@@@@@@'
RUN echo '@@@@@@@@@@@.        @@@@@@@@@@/ ,%@@@@@@%* (@@@@@@@@@.   %@@@ @@@@@@@@'
RUN echo '@@@@@@@@%        @@@@@@@@@@@   @&,      *@&  *@@@@@@@@@@ @@  %@@@@@@@@'
RUN echo '@@@@@@, %@@@   @@@@@@@@@@@@@  @@@@@&  @@@@@&  @@@@@@@@@@@   *#  @@@@@@'
RUN echo '@@@@@  %@@@@@ *@@@@@@@@@@@@@  @@@@@&  @@@@@%  @@@@@@@@@@@* @@@@  @@@@@'
RUN echo '@@@@@@.  .,    @@@@@@@@@@@@@  @@@@@&  @@@@@%  @@@@@@@@@@.      @@@@@@@'
RUN echo '@@@@@@@@@   @@& @@@&@@@@@@@@  @@@@@@.,@@@@@&  @@@@@@@@       @@@@@@@@@'
RUN echo '@@@@@@@@@@@@(     %@@% (@@@@@@@@@@@@@@@@@@@@@@@@@@,      *@@@@@@@@@@@@'
RUN echo '@@@@@@@@@@@@@@@@@&.  ,@@@@.  .%@@@@@@@@@@@@@/        %@@@@@@@@@@@@@@@@'
RUN echo '@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(,.     .(@@@@@@@@@@@@@@@@@@@@@@@@@'
RUN echo '@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@'

RUN apt-get update && apt-get install -y \
    git \
    wget \
    curl \
    unzip \
    python3 \
    python3-pip \
    build-essential \
    cmake \
    libgl1-mesa-glx \
    libglib2.0-0 \
    libusb-1.0-0 \
    && rm -rf /var/lib/apt/lists/*

RUN pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
RUN pip3 install cmake
RUN pip3 install protobuf==3.20.3
RUN pip3 install onnx
#RUN pip3 install ultralytics tensorflow onnx onnx2tf>1.17.5,<=1.22.3 tflite_support onnxruntime onnxslim onnx_graphsurgeon>=0.3.26 sng4onnx>=1.0.1 tf_keras
RUN pip3 install ultralytics tensorflow "onnx2tf>1.17.5,<=1.22.3" tflite_support onnxruntime onnxslim "onnx_graphsurgeon>=0.3.26" "sng4onnx>=1.0.1" tf_keras
```

## Reply by jeremyrbrown5 · 2025-10-31 17:41:03 UTC (in reply to Robbie McCue)

@Robbie-McCue worked, thanks so much!
