From 72f54f26d4bd70282bf887ee71d39259798e79b7 Mon Sep 17 00:00:00 2001 From: Christof Kaufmann <christof.kaufmann@hs-bochum.de> Date: Mon, 18 Nov 2024 14:54:19 +0100 Subject: [PATCH] Update code-server to 4.95.2 --- keras3-cpu/Dockerfile | 2 +- keras3-gpu/Dockerfile | 2 +- pytorch-gpu/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/keras3-cpu/Dockerfile b/keras3-cpu/Dockerfile index e39a705..15e0a7b 100644 --- a/keras3-cpu/Dockerfile +++ b/keras3-cpu/Dockerfile @@ -57,7 +57,7 @@ RUN mamba install --yes --no-update-deps \ USER root # install code-server and extensions -ENV CODE_VERSION=4.93.1 +ENV CODE_VERSION=4.95.2 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 && \ diff --git a/keras3-gpu/Dockerfile b/keras3-gpu/Dockerfile index 32c6599..b5deea1 100644 --- a/keras3-gpu/Dockerfile +++ b/keras3-gpu/Dockerfile @@ -10,7 +10,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"] USER root # install code-server and extensions -ENV CODE_VERSION=4.93.1 +ENV CODE_VERSION=4.95.2 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 && \ diff --git a/pytorch-gpu/Dockerfile b/pytorch-gpu/Dockerfile index 8691456..5d1ff72 100644 --- a/pytorch-gpu/Dockerfile +++ b/pytorch-gpu/Dockerfile @@ -10,7 +10,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"] USER root # install code-server and extensions -ENV CODE_VERSION=4.93.1 +ENV CODE_VERSION=4.95.2 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 && \ -- GitLab