-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This reverts commit b37f679. Signed-off-by: Paul S. Schweigert <[email protected]>
- Loading branch information
Showing
4 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
ARG IMAGE_PY_VERSION=py39 | ||
|
||
FROM rayproject/ray:2.4.0-$IMAGE_PY_VERSION AS ray-node-amd64 | ||
RUN apt-get -y update && apt-get -y upgrade | ||
USER $RAY_UID | ||
COPY --chown=$RAY_UID:$RAY_UID ./client ./qs | ||
RUN cd ./qs && pip install . | ||
|
@@ -10,7 +9,7 @@ RUN rm -r ./qs | |
|
||
FROM rayproject/ray:2.4.0-$IMAGE_PY_VERSION-aarch64 AS ray-node-arm64 | ||
USER $RAY_UID | ||
RUN apt-get -y update && apt-get -y upgrade && apt-get -y install gcc build-essential libopenblas-dev cmake | ||
RUN apt-get -y update && apt-get -y install gcc build-essential libopenblas-dev cmake | ||
COPY --chown=$RAY_UID:$RAY_UID ./client ./qs | ||
RUN cd ./qs && pip install . | ||
RUN if [ $TARGETARCH == arm64 ] ; then pip install git+https://github.com/pyscf/[email protected]; fi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters