Commit 577ee948 by Brian Beggs

Update to how git client is installed in the go-agent docker

parent f1017993
...@@ -8,7 +8,6 @@ LABEL version="0.02" \ ...@@ -8,7 +8,6 @@ LABEL version="0.02" \
RUN \ RUN \
echo oracle-java7-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections && \ 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:webupd8team/java && \
add-apt-repository -y ppa:git-core/ppa && \
apt-get update apt-get update
# Install Java 7 # Install Java 7
...@@ -18,7 +17,9 @@ RUN \ ...@@ -18,7 +17,9 @@ RUN \
rm -rf /var/cache/oracle-jdk7-installer rm -rf /var/cache/oracle-jdk7-installer
# Install a modern git client # 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. # Define working directory.
WORKDIR /data 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