From 2d3e854abbe63af73cc404db74fa44531c14c1ca Mon Sep 17 00:00:00 2001
From: Christof Kaufmann <christof.kaufmann@hs-bochum.de>
Date: Tue, 16 Jul 2024 16:28:35 +0200
Subject: [PATCH] Add note to not update to code-server 4.92

---
 keras3-cpu/Dockerfile                 | 1 +
 keras3-gpu/Dockerfile                 | 1 +
 tensorflow-cpu-with-vscode/Dockerfile | 1 +
 tensorflow-gpu-with-vscode/Dockerfile | 1 +
 4 files changed, 4 insertions(+)

diff --git a/keras3-cpu/Dockerfile b/keras3-cpu/Dockerfile
index 4d839ce..7c1a45c 100644
--- a/keras3-cpu/Dockerfile
+++ b/keras3-cpu/Dockerfile
@@ -57,6 +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
 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 && \
diff --git a/keras3-gpu/Dockerfile b/keras3-gpu/Dockerfile
index d50edc5..bfeb108 100644
--- a/keras3-gpu/Dockerfile
+++ b/keras3-gpu/Dockerfile
@@ -10,6 +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
 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 && \
diff --git a/tensorflow-cpu-with-vscode/Dockerfile b/tensorflow-cpu-with-vscode/Dockerfile
index ac8fd55..fe57458 100644
--- a/tensorflow-cpu-with-vscode/Dockerfile
+++ b/tensorflow-cpu-with-vscode/Dockerfile
@@ -56,6 +56,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
 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 && \
diff --git a/tensorflow-gpu-with-vscode/Dockerfile b/tensorflow-gpu-with-vscode/Dockerfile
index d22bcba..2f0a4a6 100644
--- a/tensorflow-gpu-with-vscode/Dockerfile
+++ b/tensorflow-gpu-with-vscode/Dockerfile
@@ -9,6 +9,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
 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 && \
-- 
GitLab