Commit 4a4937f3 authored by Peter Parente's avatar Peter Parente

Merge pull request #140 from jakirkham/apt_get_clean

Run `apt-get clean` after installing jq
parents e06acca8 9f9ddd67
...@@ -7,7 +7,7 @@ MAINTAINER Jupyter Project <jupyter@googlegroups.com> ...@@ -7,7 +7,7 @@ MAINTAINER Jupyter Project <jupyter@googlegroups.com>
USER root USER root
# Util to help with kernel spec later # Util to help with kernel spec later
RUN apt-get -y update && apt-get -y install jq RUN apt-get -y update && apt-get -y install jq && apt-get clean
# Spark dependencies # Spark dependencies
ENV APACHE_SPARK_VERSION 1.6.0 ENV APACHE_SPARK_VERSION 1.6.0
......
...@@ -7,7 +7,7 @@ MAINTAINER Jupyter Project <jupyter@googlegroups.com> ...@@ -7,7 +7,7 @@ MAINTAINER Jupyter Project <jupyter@googlegroups.com>
USER root USER root
# Util to help with kernel spec later # Util to help with kernel spec later
RUN apt-get -y update && apt-get -y install jq RUN apt-get -y update && apt-get -y install jq && apt-get clean
# Spark dependencies # Spark dependencies
ENV APACHE_SPARK_VERSION 1.6.0 ENV APACHE_SPARK_VERSION 1.6.0
......
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