Skip to content

Commit

Permalink
Update Tools/machines/perlmutter-nersc/Containerfile
Browse files Browse the repository at this point in the history
Co-authored-by: Axel Huebl <axel.huebl@plasma.ninja>
  • Loading branch information
sinha-r and ax3l authored Dec 13, 2024
1 parent fc8f29b commit 1d83980
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Tools/machines/perlmutter-nersc/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
FROM base AS c-blosc

RUN git clone -b v1.21.1 https://github.com/Blosc/c-blosc.git /tmp/c-blosc && \
cd /tmp/c-blosc && \
mkdir build && cd build && \
cmake -DCMAKE_INSTALL_PREFIX=/usr .. && \
make -j$(nproc) && \
make install && \
rm -rf /tmp/c-blosc
cmake -S /tmp/c-blosc -B /tmp/c-blosc-build \
-DCMAKE_INSTALL_PREFIX=/usr .. && \
cmake --build /tmp/c-blosc-build --target install -j$(nproc) && \
rm -rf /tmp/c-blosc*

# Install ADIOS2 from source
FROM base AS adios2
Expand Down

0 comments on commit 1d83980

Please sign in to comment.