Dockerfile 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. # locked PySide2==5.14.1 requires python<3.9
  2. # https://github.com/alicevision/meshroom/blob/8d0cd745811320ab27245eabb56997b00ba3a70e/requirements.txt#L4
  3. FROM python:3.8-slim-buster
  4. ARG MESHROOM_PATH=/meshroom
  5. RUN apt-get update \
  6. && apt-get install --yes --no-install-recommends git \
  7. && rm -r /var/lib/apt/lists \
  8. && useradd --create-home mesh \
  9. && mkdir $MESHROOM_PATH \
  10. && chown mesh $MESHROOM_PATH
  11. USER mesh
  12. WORKDIR $MESHROOM_PATH
  13. ARG MESHROOM_REVISION=8d0cd745811320ab27245eabb56997b00ba3a70e
  14. RUN git clone --recursive https://github.com/alicevision/meshroom.git . \
  15. && git checkout $MESHROOM_REVISION
  16. RUN pip install --user --requirement requirements.txt
  17. # TODO merge up
  18. USER root
  19. # > ImportError: libgthread-2.0.so.0: cannot open shared object file: No such file or directory
  20. # > ImportError: libGL.so.1: cannot open shared object file: No such file or directory
  21. # > qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found.
  22. RUN apt-get update \
  23. && apt-get install --yes --no-install-recommends libglib2.0-0 libgl1
  24. RUN apt-get update \
  25. && apt-get install --yes --no-install-recommends libqt5gui5 libfontconfig1
  26. USER mesh
  27. ENV PYTHONPATH=$MESHROOM_PATH
  28. CMD ["python", "meshroom/ui"]