From 19e271ef85d9a531a4a0da205cfcfcadca260fe6 Mon Sep 17 00:00:00 2001
From: Christof Kaufmann <christof.kaufmann@hs-bochum.de>
Date: Sat, 28 Sep 2024 12:11:35 +0200
Subject: [PATCH] keras-?pu: Update code-server to 4.93.1

---
 keras3-cpu/Dockerfile | 5 ++---
 keras3-gpu/Dockerfile | 5 ++---
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/keras3-cpu/Dockerfile b/keras3-cpu/Dockerfile
index 7c1a45c..d3fbf06 100644
--- a/keras3-cpu/Dockerfile
+++ b/keras3-cpu/Dockerfile
@@ -57,8 +57,7 @@ RUN mamba install --yes --no-update-deps \
 USER root
 
 # install code-server and extensions
-# NOTE: DO NOT UPDATE TO 4.92 WITHOUT INSTALLING AN EXTENSION TO VIEW ARRAYS AND DATAFRAMES
-ENV CODE_VERSION=4.91.0
+ENV CODE_VERSION=4.93.1
 RUN wget --no-hsts -q https://github.com/coder/code-server/releases/download/v$CODE_VERSION/code-server_${CODE_VERSION}_amd64.deb && \
     dpkg -i code-server_${CODE_VERSION}_amd64.deb && \
     rm -f code-server_${CODE_VERSION}_amd64.deb && \
@@ -82,7 +81,7 @@ RUN wget --no-hsts -q -O vscode_cli.tar.gz 'https://code.visualstudio.com/sha/do
 
 # install some packages
 USER ${NB_UID}
-RUN mamba install --yes --no-update-deps \
+RUN mamba install --yes \
     # umap + hdbscan
     'umap-learn' \
     'hdbscan' \
diff --git a/keras3-gpu/Dockerfile b/keras3-gpu/Dockerfile
index bfeb108..0c25dad 100644
--- a/keras3-gpu/Dockerfile
+++ b/keras3-gpu/Dockerfile
@@ -10,8 +10,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
 USER root
 
 # install code-server and extensions
-# NOTE: DO NOT UPDATE TO 4.92 WITHOUT INSTALLING AN EXTENSION TO VIEW ARRAYS AND DATAFRAMES
-ENV CODE_VERSION=4.91.0
+ENV CODE_VERSION=4.93.1
 RUN wget --no-hsts -q https://github.com/coder/code-server/releases/download/v$CODE_VERSION/code-server_${CODE_VERSION}_amd64.deb && \
     dpkg -i code-server_${CODE_VERSION}_amd64.deb && \
     rm -f code-server_${CODE_VERSION}_amd64.deb && \
@@ -33,7 +32,7 @@ RUN wget --no-hsts -q -O vscode_cli.tar.gz 'https://code.visualstudio.com/sha/do
 
 # install some packages
 USER ${NB_UID}
-RUN mamba install --yes --no-update-deps \
+RUN mamba install --yes \
     # umap + hdbscan
     'umap-learn' \
     'hdbscan' \
-- 
GitLab