Dockerfile 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # 0. set args
  2. ARG PPTAG=2.5.1 # tags refer to https://hub.docker.com/r/paddlepaddle/paddle/tags
  3. # 1. pull base image
  4. FROM paddlepaddle/paddle:${PPTAG}
  5. # 2. install GDAL
  6. RUN wget https://paddlers.bj.bcebos.com/dependencies/gdal/GDAL-3.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl \
  7. && pip install GDAL-3.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl \
  8. && rm -rf GDAL-3.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  9. # 3. clone PaddleRS
  10. WORKDIR /opt
  11. RUN git clone https://github.com/PaddlePaddle/PaddleRS.git \
  12. && chmod 777 -R /opt/PaddleRS/examples
  13. ENV PYTHONPATH /opt/PaddleRS
  14. # 4. install requirements
  15. WORKDIR /opt/PaddleRS
  16. RUN pip install -r /opt/PaddleRS/requirements.txt -i https://mirror.baidu.com/pypi/simple
  17. # 5. install PyDenseCRF
  18. WORKDIR /usr/src
  19. RUN pip install git+https://github.com/lucasb-eyer/pydensecrf.git \
  20. && rm -rf /usr/src/pydensecrf
  21. # 6. (optional) install EISeg
  22. ARG EISEG
  23. RUN if [ "$EISEG" = "ON" ] ; then \
  24. pip install --upgrade pip \
  25. && pip install eiseg rasterio -i https://mirror.baidu.com/pypi/simple \
  26. && pip uninstall -y opencv-python-headless \
  27. && pip install opencv-python==4.2.0.34 -i https://mirror.baidu.com/pypi/simple \
  28. && apt-get update \
  29. && apt-get install -y \
  30. libgl1-mesa-glx libxcb-xinerama0 libxkbcommon-x11-0 \
  31. libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 \
  32. libxcb-render-util0 libxcb-shape0 libxcb-xfixes0 \
  33. x11-xserver-utils x11-apps locales \
  34. && locale-gen zh_CN \
  35. && locale-gen zh_CN.utf8 \
  36. && apt-get install -y ttf-wqy-microhei ttf-wqy-zenhei xfonts-wqy ; \
  37. fi
  38. ENV DISPLAY host.docker.internal:0
  39. # 7. set working directory
  40. WORKDIR /opt/PaddleRS