diff options
Diffstat (limited to 'roms/skiboot/opal-ci/Dockerfile-debian-unstable')
-rw-r--r-- | roms/skiboot/opal-ci/Dockerfile-debian-unstable | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/roms/skiboot/opal-ci/Dockerfile-debian-unstable b/roms/skiboot/opal-ci/Dockerfile-debian-unstable new file mode 100644 index 000000000..eaf29a8c0 --- /dev/null +++ b/roms/skiboot/opal-ci/Dockerfile-debian-unstable @@ -0,0 +1,11 @@ +FROM debian:unstable +ENV DEBIAN_FRONTEND noninteractive +RUN if [ `arch` != "ppc64le" ]; then apt-get update -qq && apt-get install -y gcc-powerpc64le-linux-gnu; fi +RUN apt-get update -qq && apt-get install -y gcc-arm-linux-gnueabi || true +RUN apt-get update -qq && apt-get install -y gcc ccache expect libssl-dev wget \ + curl xterm device-tree-compiler build-essential gcc python g++ pkg-config \ + libz-dev libglib2.0-dev libpixman-1-dev libfdt-dev git libstdc++6 valgrind \ + libtcl8.6 qemu-system-ppc opal-utils libmbedtls-dev +RUN if [ `arch` = "x86_64" ]; then curl -O http://public.dhe.ibm.com/software/server/powerfuncsim/p9/packages/v1.1-0/systemsim-p9-1.1-0-trusty_amd64.deb; dpkg -i systemsim-p9-1.1-0-trusty_amd64.deb; fi +COPY . /build/ +WORKDIR /build |