You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

incremental-learning-helmet-detection.Dockerfile 537 B

123456789101112131415161718192021222324
  1. FROM tensorflow/tensorflow:1.15.4
  2. RUN apt update \
  3. && apt install -y libgl1-mesa-glx
  4. COPY ./lib/requirements.txt /home
  5. # install requirements of sedna lib
  6. RUN pip install -r /home/requirements.txt
  7. # extra requirements for example
  8. RUN pip install tqdm==4.56.0
  9. RUN pip install matplotlib==3.3.3
  10. RUN pip install opencv-python==4.4.0.44
  11. RUN pip install Pillow==8.0.1
  12. ENV PYTHONPATH "/home/lib"
  13. WORKDIR /home/work
  14. COPY ./lib /home/lib
  15. COPY examples/incremental_learning/helmet_detection/training/ /home/work/
  16. ENTRYPOINT ["python"]