Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update flux versions #10

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ It works as follows:
4. We move the entire thing to a shared empty volume with the other application container
5. The application container entrypoitn is edited to get wrapped with Flux

We will see if it works!
We will see if it works!
5 changes: 3 additions & 2 deletions rocky/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ ENV ARCH=${ARCH}
RUN dnf update -y && dnf install -y gettext wget && \
yum install dnf-plugins-core || true && \
dnf config-manager --enable crb || true && \
dnf install -y texlive bison make
dnf install -y texlive bison make python3 python3-devel

# Specify flux deps in the spack manifest file (spack.yaml)
RUN mkdir /opt/spack-environment \
&& (echo spack: \
&& echo ' specs: [flux-sched, flux-core, pmix@4.2.2, flux-pmix, libzmq]' \
&& echo ' specs: [flux-sched, flux-core, pmix, flux-pmix, libzmq]' \
&& echo ' view: /opt/views/view' \
&& echo ' concretizer:' \
&& echo ' unify: true' \
Expand All @@ -30,6 +30,7 @@ RUN cd /opt/spack-environment && \
. /opt/spack/share/spack/setup-env.sh && \
spack env activate . && \
spack external find bison && \
spack external find python && \
spack install --fail-fast && spack gc -y

# Strip all the binaries
Expand Down
2 changes: 1 addition & 1 deletion ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y gettext-base
# is specified in a manifest file (spack.yaml)
RUN mkdir /opt/spack-environment \
&& (echo spack: \
&& echo ' specs: [flux-sched, flux-core, pmix@4.2.2, flux-pmix@0.4.0, libzmq@4.3.4]' \
&& echo ' specs: [flux-sched, flux-core, pmix, flux-pmix, libzmq]' \
&& echo ' view: /opt/views/view' \
&& echo ' concretizer:' \
&& echo ' unify: true' \
Expand Down