blob: f9fc7686e86bd80e4b1cdc559a4c13e28f7be16d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
FROM cryptech-builder:stage1
RUN ln -sf /bin/bash /bin/sh
RUN apt-get update && apt-get install -y \
libglib2.0-0 \
libxrandr2 \
python-xvfbwrapper \
ratpoison
COPY builder installer licenser /xilinx-unpack/
# For the moment we're licensing as root. Probably need to change
# that since building as root is a really bad idea. License file goes
# in home directory of user who will be running the builds.
COPY Xilinx.lic /root
|