5008fc787b
Put the list of package names in an environment, and output their package names to the target file in the end. Signed-off-by: Fam Zheng <famz@redhat.com> Message-Id: <1474429768-25027-4-git-send-email-famz@redhat.com> Reviewed-by: Daniel. P. Berrange <berrange@redhat.com>
14 lines
587 B
Docker
14 lines
587 B
Docker
FROM ubuntu:14.04
|
|
RUN echo "deb http://archive.ubuntu.com/ubuntu/ trusty universe multiverse" >> \
|
|
/etc/apt/sources.list
|
|
RUN apt-get update
|
|
ENV PACKAGES flex bison \
|
|
libusb-1.0-0-dev libiscsi-dev librados-dev libncurses5-dev \
|
|
libseccomp-dev libgnutls-dev libssh2-1-dev libspice-server-dev \
|
|
libspice-protocol-dev libnss3-dev libfdt-dev \
|
|
libgtk-3-dev libvte-2.90-dev libsdl1.2-dev libpng12-dev libpixman-1-dev \
|
|
git make ccache python-yaml gcc clang sparse
|
|
RUN apt-get -y install $PACKAGES
|
|
RUN dpkg -l $PACKAGES | sort > /packages.txt
|
|
ENV FEATURES clang pyyaml
|