Add git to the development Dockerfile (#20276)

* git_on_dev

* feedback
This commit is contained in:
Johann Kellerman 2019-01-22 09:21:43 +02:00 committed by Michaël Arnauts
parent d419471372
commit 5a30b0507d
1 changed files with 5 additions and 0 deletions

View File

@ -33,6 +33,11 @@ RUN pip3 install --no-cache-dir -r requirements_all.txt && \
# BEGIN: Development additions
# Install git
RUN apt-get update \
&& apt-get install -y --no-install-recommends git \
&& rm -rf /var/lib/apt/lists/*
# Install nodejs
RUN curl -sL https://deb.nodesource.com/setup_7.x | bash - && \
apt-get install -y nodejs