From 6b698bab480b8f3d6c38af117bb5467ccb881bac Mon Sep 17 00:00:00 2001 From: Michael Thiel <michael.thiel@fh-muenster.de> Date: Thu, 14 Dec 2023 09:43:28 +0100 Subject: [PATCH] Dockerfile - added casadi --- Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1df2ce1..0ae54c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,13 @@ FROM jupyter/tensorflow-notebook:hub-3.1.1 USER root -# Install Extensions +# Update Pip and conda RUN pip3 install --upgrade pip RUN mamba update mamba + +# Conda packages RUN mamba install -c conda-forge control +RUN mamba install -c conda-forge casadi + +# Install pip packages +RUN pip install -c conda-forge jax \ No newline at end of file -- GitLab