1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-18 06:18:08 +00:00

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
This commit is contained in:
Jeremy Grossmann 2021-09-23 09:58:04 +09:30 committed by GitHub
commit c386b2d046
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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