123456789101112131415161718192021222324252627282930313233343536373839404142 |
- FROM arm64v8/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 gcc \
- 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 gsutil notebook \
- tensorflow-aarch64
-
-
-
- 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
|