jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/355236 )
Change subject: Strip out temp /opt/quibble from image ...................................................................... Strip out temp /opt/quibble from image /opt/quibble is solely used to pip install quibble inside the image. We no more need it once it has been installed. Change-Id: Idf290f37fc852429649450c75f4e822462801ba1 --- M Dockerfile 1 file changed, 3 insertions(+), 2 deletions(-) Approvals: Thcipriani: Looks good to me, approved jenkins-bot: Verified diff --git a/Dockerfile b/Dockerfile index 85ee5bc..9a7151c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,5 +36,6 @@ COPY . /opt/quibble RUN cd /opt/quibble && \ - pip3 install -rrequirements.txt && \ - python3 setup.py install + pip3 install -rrequirements.txt && \ + python3 setup.py install && \ + rm -fR /opt/quibble -- To view, visit https://gerrit.wikimedia.org/r/355236 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: Idf290f37fc852429649450c75f4e822462801ba1 Gerrit-PatchSet: 1 Gerrit-Project: integration/quibble Gerrit-Branch: master Gerrit-Owner: Hashar <[email protected]> Gerrit-Reviewer: Hashar <[email protected]> Gerrit-Reviewer: Thcipriani <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
