From d3240a506308374ac9a4b6613dbcf9b6f94b7357 Mon Sep 17 00:00:00 2001 From: nolash Date: Mon, 29 Mar 2021 15:17:32 +0200 Subject: [PATCH] replace requirements base for cache, notify --- apps/cic-cache/docker/Dockerfile | 3 +-- apps/cic-notify/docker/Dockerfile | 5 +---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/apps/cic-cache/docker/Dockerfile b/apps/cic-cache/docker/Dockerfile index b67834ed..e759dc49 100644 --- a/apps/cic-cache/docker/Dockerfile +++ b/apps/cic-cache/docker/Dockerfile @@ -17,8 +17,7 @@ RUN apt-get update && \ # Copy shared requirements from top of mono-repo RUN echo "copying root req file ${root_requirement_file}" -COPY $root_requirement_file . -RUN pip install -r $root_requirement_file $pip_extra_index_url_flag +RUN pip install $pip_extra_index_url_flag cic-base[full_graph]==0.1.2a44 COPY cic-cache/requirements.txt ./ COPY cic-cache/setup.cfg \ diff --git a/apps/cic-notify/docker/Dockerfile b/apps/cic-notify/docker/Dockerfile index c0a504c8..dfce433a 100644 --- a/apps/cic-notify/docker/Dockerfile +++ b/apps/cic-notify/docker/Dockerfile @@ -6,10 +6,7 @@ RUN apt-get update && \ WORKDIR /usr/src/cic-notify ARG pip_extra_index_url_flag='--index https://pypi.org/simple --extra-index-url https://pip.grassrootseconomics.net:8433' -ARG root_requirement_file='requirements.txt' -RUN echo "copying root req file ${root_requirement_file}" -COPY $root_requirement_file . -RUN pip install -r $root_requirement_file $pip_extra_index_url_flag +RUN pip install $pip_extra_index_url_flag cic-base[full_graph]==0.1.2a44 COPY cic-notify/setup.cfg \ cic-notify/setup.py \