From 867ddf9a6ec17b1bc015be35cba4beb06b1fcbfc Mon Sep 17 00:00:00 2001 From: Vladimir Protsenko Date: Thu, 17 Aug 2023 22:56:31 +0400 Subject: [PATCH] Install ipykernel for conda base environment. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d9b3f7d..8a76e8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN chown ${USER}:${GROUP} /wd # SYSTEM CONFIGURATION RUN apt install vim htop mc curl wget git tree -y RUN curl -fsSL https://code-server.dev/install.sh | sh - +RUN /opt/conda/bin/conda install -n base ipykernel --update-deps --force-reinstall -y USER ${USER}