diff --git a/share/ramble/cloud-build/Dockerfile-apt b/share/ramble/cloud-build/Dockerfile-apt index 82de4b95f..d24bd7207 100644 --- a/share/ramble/cloud-build/Dockerfile-apt +++ b/share/ramble/cloud-build/Dockerfile-apt @@ -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} diff --git a/share/ramble/cloud-build/Dockerfile-yum b/share/ramble/cloud-build/Dockerfile-yum index 8399de069..c1c141329 100644 --- a/share/ramble/cloud-build/Dockerfile-yum +++ b/share/ramble/cloud-build/Dockerfile-yum @@ -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}