Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,16 @@ FROM jupyter/base-notebook:lab
USER root

RUN apt-get update \
&& apt-get install -yq --no-install-recommends graphviz git \
&& apt-get install -yq --no-install-recommends curl graphviz git \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl" && \
mkdir -p /usr/local/bin && \
mv ./kubectl /usr/local/bin/kubectl && \
chmod +x /usr/local/bin/kubectl && \
kubectl version --client

USER $NB_USER

RUN conda install --yes \
Expand Down