Skip to content

Commit e01d411

Browse files
committed
Changed the use of requirements3.txt in docker files back to requirements.txt
- Legacy-Id: 17634
1 parent 2d16858 commit e01d411

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ ENV DDIR="/usr/local/share/datatracker"
173173
RUN mkdir -p $DDIR
174174
WORKDIR $DDIR
175175

176-
COPY requirements3.txt ./
177-
RUN pip$PYREV --no-cache-dir install -r requirements3.txt
176+
COPY requirements.txt ./
177+
RUN pip$PYREV --no-cache-dir install -r requirements.txt
178178

179179
COPY settings_local.py ./
180180
COPY setprompt ./

docker/docker-init.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ echo "Activating the virtual python environment ..."
102102

103103
if ! python -c "import django"; then
104104
echo "Installing requirements ..."
105-
pip install -r /usr/local/share/datatracker/requirements3.txt
105+
pip install -r /usr/local/share/datatracker/requirements.txt
106106
fi
107107

108108
if [ ! -f $CWD/ietf/settings_local.py ]; then

0 commit comments

Comments
 (0)