Skip to content

Commit

Permalink
Update Dockerfiles to capture new requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasjacobsen committed Sep 6, 2024
1 parent 78e31f8 commit d1d6ea8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion share/ramble/cloud-build/Dockerfile-apt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ RUN cd /opt && \
. spack/share/spack/setup-env.sh && \
spack load py-pip ^python@${PYTHON_VER} && \
wget https://raw.githubusercontent.com/GoogleCloudPlatform/ramble/develop/requirements.txt && \
python -m pip install -r /opt/requirements.txt
wget https://raw.githubusercontent.com/GoogleCloudPlatform/ramble/develop/requirements-dev.txt && \
python -m pip install -r /opt/requirements-dev.txt

FROM ${BASE_IMG}:${BASE_VER}

Expand Down
3 changes: 2 additions & 1 deletion share/ramble/cloud-build/Dockerfile-yum
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ RUN cd /opt && \
. spack/share/spack/setup-env.sh && \
spack load py-pip ^python@${PYTHON_VER} && \
wget https://raw.githubusercontent.com/GoogleCloudPlatform/ramble/develop/requirements.txt && \
python -m pip install -r /opt/requirements.txt
wget https://raw.githubusercontent.com/GoogleCloudPlatform/ramble/develop/requirements-dev.txt && \
python -m pip install -r /opt/requirements-dev.txt

FROM ${BASE_IMG}:${BASE_VER}

Expand Down

0 comments on commit d1d6ea8

Please sign in to comment.