From 32deb922dc8a095d473018e7c12ec74d4f1bc59a Mon Sep 17 00:00:00 2001 From: Michael Thiel <michael.thiel@fh-muenster.de> Date: Thu, 14 Dec 2023 09:36:45 +0100 Subject: [PATCH] Dockerfile - added pip update - added mamba update - try out commands without -y option (probably this will fail) --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d86e556..1df2ce1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,4 +3,6 @@ FROM jupyter/tensorflow-notebook:hub-3.1.1 USER root # Install Extensions - +RUN pip3 install --upgrade pip +RUN mamba update mamba +RUN mamba install -c conda-forge control -- GitLab