From a26f246955544c942693ddff4a6a41bd3f93a573 Mon Sep 17 00:00:00 2001 From: inso <insomniak.fr@gmail.com> Date: Tue, 13 Feb 2018 18:54:50 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 37b2dbe..240f915 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ENV DEBIAN_FRONTEND noninteractive # Install needed tools RUN apt-get update && \ - apt-get install -y apt-transport-https curl && \ + apt-get install -y apt-transport-https curl git && \ apt-get update && \ apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* @@ -24,7 +24,7 @@ ENV PYENV_ROOT "/builder/.pyenv" USER builder RUN git clone https://github.com/pyenv/pyenv.git /builder/.pyenv && \ echo "export PYENV_ROOT=$PYENV_ROOT" >> /builder/.profile && \ - echo "export PATH=$PYENV_ROOT/bin:$PATH" >> /builder/.profile && \ + echo "export PATH=$PYENV_ROOT/bin:$PATH" >> /builder/.profile USER root -- GitLab