Disable pip cache when installing Mercurial

This commit is contained in:
Marco Castelluccio 2019-06-27 01:25:22 +02:00
Родитель afac5cbdb6
Коммит f65bf19ab8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -3,7 +3,7 @@ FROM mozilla/bugbug-base:latest
# Mercurial need Python2 :(
RUN apt-get update && apt-get install -y python-pip && rm -rf /var/lib/apt/lists/*
RUN python2 -m pip install mercurial==4.8
RUN python2 -m pip install --disable-pip-version-check --no-cache-dir mercurial==4.8
# Robustcheckout setup
RUN hg clone -r 6cd994e30bb1 https://hg.mozilla.org/hgcustom/version-control-tools /version-control-tools/