We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d16858 commit e01d411Copy full SHA for e01d411
2 files changed
docker/Dockerfile
@@ -173,8 +173,8 @@ ENV DDIR="/usr/local/share/datatracker"
173
RUN mkdir -p $DDIR
174
WORKDIR $DDIR
175
176
-COPY requirements3.txt ./
177
-RUN pip$PYREV --no-cache-dir install -r requirements3.txt
+COPY requirements.txt ./
+RUN pip$PYREV --no-cache-dir install -r requirements.txt
178
179
COPY settings_local.py ./
180
COPY setprompt ./
docker/docker-init.sh
@@ -102,7 +102,7 @@ echo "Activating the virtual python environment ..."
102
103
if ! python -c "import django"; then
104
echo "Installing requirements ..."
105
- pip install -r /usr/local/share/datatracker/requirements3.txt
+ pip install -r /usr/local/share/datatracker/requirements.txt
106
fi
107
108
if [ ! -f $CWD/ietf/settings_local.py ]; then
0 commit comments