You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Dockerfile
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,10 @@ RUN mkdir /project; mkdir /project/TMP
26
26
VOLUME /project/TMP
27
27
WORKDIR /project
28
28
29
+
# IMPORTANT: please double check that the dependencies above are up to date with the following requirements file. We currently still run pip install on dependencies within requirements.txt in order to keep dependencies in agreement (in the rare cases were someone updated the requirements.txt file and forgot to update the dockefile)
30
+
ADD . /project/
31
+
RUN pip3 install --upgrade -r /project/requirements.txt
32
+
29
33
RUN echo "You should think about possibly upgrading these outdated packages"
0 commit comments