2023-11-03 18:45:49 +01:00
|
|
|
FROM opensuse/leap
|
|
|
|
|
2023-11-03 18:58:21 +01:00
|
|
|
RUN sed -i '/onlyReq/csolver.onlyRequires = true' /etc/zypp/zypp.conf
|
2023-11-03 19:52:04 +01:00
|
|
|
RUN zypper --quiet install -y git gcc libtool command-not-found
|
2023-11-03 19:59:04 +01:00
|
|
|
RUN git clone --depth 1 https://github.com/flux-framework/flux-core.git
|
|
|
|
RUN cd flux-core; \
|
2023-11-03 19:47:08 +01:00
|
|
|
./autogen.sh && ./configure --prefix=$HOME/local
|