File tree Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 11FROM continuumio/anaconda3 as upstream
22
33# Verify OS version is expected one
4- RUN . /etc/os-release && if [ "${VERSION_CODENAME}" != "bullseye " ]; then exit 1; fi
4+ RUN . /etc/os-release && if [ "${VERSION_CODENAME}" != "bookworm " ]; then exit 1; fi
55
66# Temporary: Upgrade python packages due to mentioned CVEs
77# They are installed by the base image (continuumio/anaconda3) which does not have the patch.
@@ -10,7 +10,7 @@ RUN chmod +x /tmp/apply_security_patches.sh
1010RUN /tmp/apply_security_patches.sh
1111
1212# Reset and copy updated files with updated privs to keep image size down
13- FROM mcr.microsoft.com/devcontainers/base:1-bullseye
13+ FROM mcr.microsoft.com/devcontainers/base:1-bookworm
1414
1515ARG USERNAME=vscode
1616
Original file line number Diff line number Diff line change 3131 " numpy" ,
3232 " certifi" ,
3333 " setuptools" ,
34- " future" ,
3534 " wheel" ,
3635 " nbconvert" ,
3736 " py" ,
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ checkCommon()
125125 libc6 \
126126 libgcc1 \
127127 libgssapi-krb5-2 \
128- liblttng-ust0 \
128+ liblttng-ust1 \
129129 libstdc++6 \
130130 zlib1g \
131131 locales \
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ checkPythonPackageVersion "cookiecutter" "2.1.1"
3434checkPythonPackageVersion " mistune" " 2.0.3"
3535checkPythonPackageVersion " numpy" " 1.22"
3636checkPythonPackageVersion " setuptools" " 65.5.1"
37- checkPythonPackageVersion " future" " 0.18.3"
3837checkPythonPackageVersion " wheel" " 0.38.1"
3938checkPythonPackageVersion " nbconvert" " 6.5.1"
4039checkPythonPackageVersion " werkzeug" " 3.0.3"
Original file line number Diff line number Diff line change 11FROM continuumio/miniconda3 as upstream
22
3+ # Verify OS version is expected one
4+ RUN . /etc/os-release && if [ "${VERSION_CODENAME}" != "bookworm" ]; then exit 1; fi
5+
36# Temporary: Upgrade python packages
47COPY ./apply_security_patches.sh /tmp/apply_security_patches.sh
58RUN chmod +x /tmp/apply_security_patches.sh
You can’t perform that action at this time.
0 commit comments