Changed the use of requirements3.txt in docker files back to requirements.txt

- Legacy-Id: 17634
This commit is contained in:
Henrik Levkowetz 2020-04-15 12:08:27 +00:00
parent 2d1685868d
commit e01d41169a
2 changed files with 3 additions and 3 deletions

View file

@ -173,8 +173,8 @@ ENV DDIR="/usr/local/share/datatracker"
RUN mkdir -p $DDIR
WORKDIR $DDIR
COPY requirements3.txt ./
RUN pip$PYREV --no-cache-dir install -r requirements3.txt
COPY requirements.txt ./
RUN pip$PYREV --no-cache-dir install -r requirements.txt
COPY settings_local.py ./
COPY setprompt ./

View file

@ -102,7 +102,7 @@ echo "Activating the virtual python environment ..."
if ! python -c "import django"; then
echo "Installing requirements ..."
pip install -r /usr/local/share/datatracker/requirements3.txt
pip install -r /usr/local/share/datatracker/requirements.txt
fi
if [ ! -f $CWD/ietf/settings_local.py ]; then