From a7bd75cf37d70a91714fff6a6d0903cdedd1b029 Mon Sep 17 00:00:00 2001 From: Aliaksandr Lubouski Date: Thu, 20 Jan 2022 11:31:33 +0100 Subject: [PATCH] GONRG-4214: fix for gcp schema service bootstrap, errors with pip3 dependencies --- devops/gcp/bootstrap-osdu-module/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devops/gcp/bootstrap-osdu-module/Dockerfile b/devops/gcp/bootstrap-osdu-module/Dockerfile index 370f2324..988a80d2 100644 --- a/devops/gcp/bootstrap-osdu-module/Dockerfile +++ b/devops/gcp/bootstrap-osdu-module/Dockerfile @@ -5,6 +5,6 @@ COPY ./deployments /opt/ RUN chmod 775 /opt/bootstrap_schema.sh -RUN pip3 install -r /opt/scripts/requirements.txt && pip3 install -r /opt/scripts/gcp-deployment-requirements.txt +RUN pip3 install --upgrade pip && pip3 install -r /opt/scripts/requirements.txt && pip3 install -r /opt/scripts/gcp-deployment-requirements.txt CMD ["/bin/bash", "-c", "source /opt/bootstrap_schema.sh"] -- GitLab