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.

lifelong-learning-cityscapes-segmentation.Dockerfile 745 B

123456789101112131415161718192021222324252627282930
  1. FROM pytorch/pytorch:1.5-cuda10.1-cudnn7-runtime
  2. RUN apt-get update
  3. RUN apt-get install libgl1-mesa-glx -y
  4. RUN apt-get install libglib2.0-dev -y
  5. COPY ./lib/requirements.txt /home
  6. COPY ./lib/requirements.dev.txt /home
  7. # install requirements of sedna lib
  8. RUN pip install -r /home/requirements.txt
  9. RUN pip install -r /home/requirements.dev.txt
  10. RUN pip install torchvision~=0.13.0
  11. RUN pip install Pillow
  12. RUN pip install tqdm
  13. RUN pip install protobuf~=3.20.1
  14. RUN pip install matplotlib
  15. RUN pip install python-multipart
  16. RUN pip install tensorboard
  17. RUN pip install watchdog
  18. ENV PYTHONPATH "/home/lib"
  19. WORKDIR /home/work
  20. COPY ./lib /home/lib
  21. COPY ./examples/lifelong_learning/cityscapes /home/work/
  22. WORKDIR /home/work/RFNet
  23. ENTRYPOINT ["python"]