From fbeaea783c04764f4e86771b767b649fcbc1258b Mon Sep 17 00:00:00 2001 From: mehrad Date: Mon, 17 Oct 2022 14:06:07 -0700 Subject: [PATCH] Dockerfile: remove deprecated --use-feature --- dockerfiles/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index e8ffac30..dd1ad71b 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -17,8 +17,8 @@ RUN dnf -y install git gcc gcc-c++ make cmake && \ python38-pip \ python38-wheel \ && pip3 install --upgrade pip \ - && pip3 install --use-feature=2020-resolver awscli \ - && pip3 install --use-feature=2020-resolver -e /opt/genienlp \ + && pip3 install awscli \ + && pip3 install -e /opt/genienlp \ && python3 -m spacy download en_core_web_sm \ && rm -fr /root/.cache \ && dnf -y remove gcc gcc-c++ make cmake \