mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-17 06:52:56 +00:00
Merge pull request #140 from jakirkham/apt_get_clean
Run `apt-get clean` after installing jq
This commit is contained in:
@@ -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
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user