Dockerfile 623 B

12345678910111213141516171819202122
  1. FROM xilinx:loadonly
  2. # Whack /bin/sh (known issue with XiLinx tools not working with /bin/dash)
  3. RUN ln -sf /bin/bash /bin/sh
  4. # Here's where it gets really fun: let's see if we can drive the
  5. # frelling XiLinx installation under Xvfb. Need some tools first,
  6. # then some manual debugging to get the details right. Don't expect
  7. # to need all of the following once we've debugged this.
  8. RUN apt-get update && apt-get install -y \
  9. libglib2.0-0 \
  10. python-xvfbwrapper \
  11. ratpoison \
  12. x11-apps \
  13. x11-utils \
  14. x11-xserver-utils \
  15. xautomation
  16. COPY installer /xilinx-unpack/
  17. CMD /xilinx-unpack/installer