Guest User

Untitled

a guest
Jul 17th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.52 KB | None | 0 0
  1. FROM base/archlinux
  2.  
  3. USER root
  4.  
  5. ENV ARCH_USER archie
  6.  
  7. RUN pacman -Syy &&
  8. pacman -S --noconfirm sudo
  9.  
  10. RUN useradd --create-home $ARCH_USER &&
  11. passwd -d $ARCH_USER &&
  12. echo "${ARCH_USER} ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
  13.  
  14. RUN pacman -S --noconfirm
  15. lximage-qt
  16.  
  17. USER $ARCH_USER
  18. WORKDIR /home/$ARCH_USER
  19.  
  20. docker build -t qt-test .
  21.  
  22. docker run -it qt-test
  23.  
  24. [archie@hash ~]$ QT_DEBUG_PLUGINS=1 lximage-qt
  25. QFactoryLoader::QFactoryLoader() checking directory path "/usr/lib/qt/plugins/bearer" ...
  26. QFactoryLoader::QFactoryLoader() looking at "/usr/lib/qt/plugins/bearer/libqconnmanbearer.so"
  27. /usr/lib/qt/plugins/bearer/libqconnmanbearer.so: Cannot allocate memory
  28. "Out of memory while loading plugin '/usr/lib/qt/plugins/bearer/libqconnmanbearer.so'."
  29. not a plugin
  30. QFactoryLoader::QFactoryLoader() looking at "/usr/lib/qt/plugins/bearer/libqgenericbearer.so"
  31. /usr/lib/qt/plugins/bearer/libqgenericbearer.so: Cannot allocate memory
  32. "Out of memory while loading plugin '/usr/lib/qt/plugins/bearer/libqgenericbearer.so'."
  33. not a plugin
  34. QFactoryLoader::QFactoryLoader() looking at "/usr/lib/qt/plugins/bearer/libqnmbearer.so"
  35. /usr/lib/qt/plugins/bearer/libqnmbearer.so: Cannot allocate memory
  36. "Out of memory while loading plugin '/usr/lib/qt/plugins/bearer/libqnmbearer.so'."
  37. not a plugin
  38. QFactoryLoader::QFactoryLoader() checking directory path "/usr/lib/qt/plugins/platforms" ...
  39. QFactoryLoader::QFactoryLoader() looking at "/usr/lib/qt/plugins/platforms/libqeglfs.so"
  40. /usr/lib/qt/plugins/platforms/libqeglfs.so: Cannot allocate memory
  41. "Out of memory while loading plugin '/usr/lib/qt/plugins/platforms/libqeglfs.so'."
  42. not a plugin
  43. QFactoryLoader::QFactoryLoader() looking at "/usr/lib/qt/plugins/platforms/libqlinuxfb.so"
  44. /usr/lib/qt/plugins/platforms/libqlinuxfb.so: Cannot allocate memory
  45. "Out of memory while loading plugin '/usr/lib/qt/plugins/platforms/libqlinuxfb.so'."
  46. not a plugin
  47. QFactoryLoader::QFactoryLoader() looking at "/usr/lib/qt/plugins/platforms/libqminimal.so"
  48. /usr/lib/qt/plugins/platforms/libqminimal.so: Cannot allocate memory
  49. "Out of memory while loading plugin '/usr/lib/qt/plugins/platforms/libqminimal.so'."
  50. not a plugin
  51. QFactoryLoader::QFactoryLoader() looking at "/usr/lib/qt/plugins/platforms/libqminimalegl.so"
  52. /usr/lib/qt/plugins/platforms/libqminimalegl.so: Cannot allocate memory
  53. "Out of memory while loading plugin '/usr/lib/qt/plugins/platforms/libqminimalegl.so'."
  54. not a plugin
  55. QFactoryLoader::QFactoryLoader() looking at "/usr/lib/qt/plugins/platforms/libqoffscreen.so"
  56. /usr/lib/qt/plugins/platforms/libqoffscreen.so: Cannot allocate memory
  57. "Out of memory while loading plugin '/usr/lib/qt/plugins/platforms/libqoffscreen.so'."
  58. not a plugin
  59. QFactoryLoader::QFactoryLoader() looking at "/usr/lib/qt/plugins/platforms/libqvnc.so"
  60. /usr/lib/qt/plugins/platforms/libqvnc.so: Cannot allocate memory
  61. "Out of memory while loading plugin '/usr/lib/qt/plugins/platforms/libqvnc.so'."
  62. not a plugin
  63. QFactoryLoader::QFactoryLoader() looking at "/usr/lib/qt/plugins/platforms/libqxcb.so"
  64. /usr/lib/qt/plugins/platforms/libqxcb.so: Cannot allocate memory
  65. "Out of memory while loading plugin '/usr/lib/qt/plugins/platforms/libqxcb.so'."
  66. not a plugin
  67. QFactoryLoader::QFactoryLoader() checking directory path "/home/archie/platforms" ...
  68. qt.qpa.plugin: Could not find the Qt platform plugin "xcb" in ""
  69. This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.
  70.  
  71. Aborted (core dumped)
Add Comment
Please, Sign In to add comment