Install 'git' package in the commit_retrieval image

Even though it's only required for the annotate pipeline.
This commit is contained in:
Marco Castelluccio 2019-06-27 01:25:55 +02:00
Родитель f65bf19ab8
Коммит eb8f847d43
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -1,7 +1,8 @@
FROM mozilla/bugbug-base:latest
# Mercurial need Python2 :(
RUN apt-get update && apt-get install -y python-pip && rm -rf /var/lib/apt/lists/*
# git is required by the annotate pipeline.
RUN apt-get update && apt-get install -y python-pip git && rm -rf /var/lib/apt/lists/*
RUN python2 -m pip install --disable-pip-version-check --no-cache-dir mercurial==4.8