| |
|
|
| |
| FROM ubuntu:20.04 |
|
|
| |
| ADD https://ultralytics.com/assets/Arial.ttf https://ultralytics.com/assets/Arial.Unicode.ttf /root/.config/Ultralytics/ |
|
|
| |
| RUN apt update |
| RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt install -y tzdata |
| RUN apt install --no-install-recommends -y python3-pip git zip curl htop libgl1-mesa-glx libglib2.0-0 libpython3.8-dev |
| |
|
|
| |
| COPY requirements.txt . |
| RUN python3 -m pip install --upgrade pip |
| RUN pip install --no-cache -r requirements.txt albumentations gsutil notebook \ |
| coremltools onnx onnx-simplifier onnxruntime openvino-dev tensorflow-cpu tensorflowjs \ |
| --extra-index-url https://download.pytorch.org/whl/cpu |
|
|
| |
| RUN mkdir -p /usr/src/app |
| WORKDIR /usr/src/app |
|
|
| |
| COPY . /usr/src/app |
| RUN git clone https://github.com/ultralytics/yolov5 /usr/src/yolov5 |
|
|
|
|
| |
|
|
| |
| |
|
|
| |
| |
|
|