Merge pull request #140 from jakirkham/apt_get_clean

Run `apt-get clean` after installing jq
This commit is contained in:
Peter Parente
2016-03-07 07:43:29 -05:00
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ MAINTAINER Jupyter Project <jupyter@googlegroups.com>
USER root
# 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
ENV APACHE_SPARK_VERSION 1.6.0

View File

@@ -7,7 +7,7 @@ MAINTAINER Jupyter Project <jupyter@googlegroups.com>
USER root
# 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
ENV APACHE_SPARK_VERSION 1.6.0