Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Dec 30, 2021
1 parent ba7b6a7 commit 9bda399
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 14 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile.centos-7
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ RUN git clone https://github.com/syspack/paks /opt/paks && \
cd /opt/paks && \
git submodule init && \
git submodule update && \
python3 -m pip install

python3 -m pip install .
ENV SPACK_ROOT=/opt/spack

CMD ["/bin/bash"]
2 changes: 1 addition & 1 deletion docker/Dockerfile.centos-8
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ RUN git clone https://github.com/syspack/paks /opt/paks && \
cd /opt/paks && \
git submodule init && \
git submodule update && \
python3 -m pip install
python3 -m pip install .

ENV SPACK_ROOT=/opt/spack

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.ubuntu-18.04
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ ENV PATH=/opt/spack/bin:$PATH \
# Install latest version of Paks
RUN git clone https://github.com/syspack/paks /opt/paks && \
cd /opt/paks && \
python3 -m pip install
python3 -m pip install .

ENV SPACK_ROOT=/opt/spack

Expand Down
23 changes: 13 additions & 10 deletions docker/Dockerfile.ubuntu-20.04
Original file line number Diff line number Diff line change
Expand Up @@ -55,20 +55,23 @@ RUN python -m pip install --upgrade pip setuptools wheel \
# Build all software with debug flags!
ENV SPACK_ADD_DEBUG_FLAGS=true

# Install latest version of Paks
RUN git clone https://github.com/syspack/paks /opt/paks && \
cd /opt/paks && \
git submodule init && \
git submodule update && \
python3 -m pip install . && \
/opt/paks/paks/spack/bin/spack compiler find

ENV SPACK_ROOT=/opt/paks/paks/spack
# Install spack to put on path
RUN git clone https://github.com/spack/spack /opt/spack && \
/opt/spack/bin/spack compiler find

ENV PATH=/opt/paks/paks/spack/bin:$PATH \
ENV PATH=/opt/spack/bin:$PATH \
NVIDIA_VISIBLE_DEVICES=all \
NVIDIA_DRIVER_CAPABILITIES=compute,utility \
LANGUAGE=en_US:en \
LANG=en_US.UTF-8

# Install latest version of Paks
RUN git clone https://github.com/syspack/paks /opt/paks && \
cd /opt/paks && \
git submodule init && \
git submodule update && \
python3 -m pip install .

ENV SPACK_ROOT=/opt/spack

CMD ["/bin/bash"]

0 comments on commit 9bda399

Please sign in to comment.