blob: db6fad35b72dc184b26281b70dce5291273fe22c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
FROM xilinx:debootstrap
# Finish debootstrap (stage0 did debootstrap --foreign)
RUN sed -i '/mount -t proc /d; /mount -t sysfs /d' /debootstrap/functions && \
/debootstrap/debootstrap --second-stage
# Our goal here is just to load the XiLinx tarball into a Debian Jessie image.
# Overriding reason for making this a separate image: we don't want to have
# to send 6GB of build context every time we touch a later stage.
ADD Xilinx_ISE_DS_Lin_14.7_1015_1.tar /xilinx-unpack/
|