From 49d800e634f1b4c54da0714b659a8f29b4d38e9a Mon Sep 17 00:00:00 2001
From: Marcus Meyer <m.meyer@itc.rwth-aachen.de>
Date: Thu, 11 Apr 2024 14:11:58 +0200
Subject: [PATCH] Switched from conda to mamba

---
 Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index bf7b0ec..4288bd2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -10,6 +10,6 @@ RUN pip install -r requirements.txt
 ADD environment.yml /tmp/environment.yml
 
 # All packages specified in environment.yml are installed in the base environment
-RUN conda env update -f /tmp/environment.yml && \
-    conda clean -a -f -y
+RUN mamba env update -f /tmp/environment.yml && \
+    mamba clean -a -f -y
 
-- 
GitLab