aboutsummaryrefslogtreecommitdiff
path: root/opal-ci/Dockerfile-fedora30
blob: 17ba79bc952a03f276c62992e0c5c468f2273cd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM fedora:30
RUN dnf -y update
RUN dnf -y install --allowerasing wget curl xterm gcc git xz make diffutils findutils expect valgrind valgrind-devel ccache dtc openssl-devel gcc-powerpc64-linux-gnu
# for building documentation
RUN dnf -y install python-pip
# for GCOV coverage reports (need testing due to https://bugzilla.redhat.com/show_bug.cgi?id=1668843 )
RUN dnf -y install lcov --enablerepo=updates-testing
# below packages are for building dtc
RUN dnf -y install flex bison
RUN if [ `arch` = "x86_64" ]; then dnf -y install http://public.dhe.ibm.com/software/server/powerfuncsim/p9/packages/v1.1-0/systemsim-p9-1.1-0.f22.x86_64.rpm; fi
COPY . /build/
WORKDIR /build