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