forked from xen-troops/xen
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
automation: add debian unstable arm64v8 image
Unfortunately sharing dockerfile has proven impossible: 1) the base image is different; 2) Arm doesn't need libc-dev-i386; 3) Arm needs libfdt-dev. Signed-off-by: Wei Liu <[email protected]> Acked-by: Doug Goldstein <[email protected]>
- Loading branch information
Wei Liu
committed
Nov 13, 2018
1 parent
1bd2b75
commit 8cf264c
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
FROM arm64v8/debian:unstable | ||
LABEL maintainer.name="The Xen Project" \ | ||
maintainer.email="[email protected]" | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
ENV USER root | ||
|
||
RUN mkdir /build | ||
WORKDIR /build | ||
|
||
# build depends | ||
RUN apt-get update && \ | ||
apt-get --quiet --yes install \ | ||
build-essential \ | ||
zlib1g-dev \ | ||
libncurses5-dev \ | ||
libssl-dev \ | ||
python2.7-dev \ | ||
xorg-dev \ | ||
uuid-dev \ | ||
libyajl-dev \ | ||
libaio-dev \ | ||
libglib2.0-dev \ | ||
clang \ | ||
libpixman-1-dev \ | ||
pkg-config \ | ||
flex \ | ||
bison \ | ||
gettext \ | ||
acpica-tools \ | ||
libfdt-dev \ | ||
bin86 \ | ||
bcc \ | ||
liblzma-dev \ | ||
libnl-3-dev \ | ||
ocaml-nox \ | ||
libfindlib-ocaml-dev \ | ||
markdown \ | ||
transfig \ | ||
pandoc \ | ||
checkpolicy \ | ||
wget \ | ||
git \ | ||
nasm \ | ||
&& \ | ||
apt-get autoremove -y && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists* /tmp/* /var/tmp/* |