From 5fd6494d3de5ee4389fbd04dda92ce172f712269 Mon Sep 17 00:00:00 2001 From: "Tiffany A. Timbers" Date: Fri, 11 Feb 2022 19:28:31 -0800 Subject: [PATCH] added ipykernel & pip to (hopefully allow support for ipython...) --- Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 04d8afd..f780509 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,12 @@ RUN apt update -y && \ make \ curl -RUN conda install -c conda-forge -y -q cookiecutter +RUN conda install -c conda-forge -y -q \ + cookiecutter \ + ipykernel \ + pip + RUN curl -sSL https://install.python-poetry.org | python3 - -ENV PATH="$HOME/root/.local/bin:${PATH}" \ No newline at end of file +ENV PATH="$HOME/root/.local/bin:${PATH}"