Merge pull request #1978 from SDN-Projects/optimization/pip-no-cache-dir

chore : use --no-cache-dir flag to pip in dockerfiles to save space
pull/1997/head
Jeremy Grossmann 3 years ago committed by GitHub
commit c386b2d046
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -28,7 +28,7 @@ RUN apt-get install -y vpcs ubridge
ADD . /server
WORKDIR /server
RUN pip3 install -r /server/requirements.txt
RUN pip3 install --no-cache-dir -r /server/requirements.txt
EXPOSE 3080

Loading…
Cancel
Save