File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
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 @@ -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 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