Commit 2db7e9ae by Brian Beggs

Merge pull request #3001 from edx/bbeggs/go-agent-git

Update to how git client is installed in the go-agent docker
parents 7f5f4374 577ee948
......@@ -8,7 +8,6 @@ LABEL version="0.02" \
RUN \
echo oracle-java7-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections && \
add-apt-repository -y ppa:webupd8team/java && \
add-apt-repository -y ppa:git-core/ppa && \
apt-get update
# Install Java 7
......@@ -18,7 +17,9 @@ RUN \
rm -rf /var/cache/oracle-jdk7-installer
# Install a modern git client
RUN sudo apt-get -y install git
RUN add-apt-repository -y ppa:git-core/ppa && \
apt-get update && \
apt-get -y install git
# Define working directory.
WORKDIR /data
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment