File tree 3 files changed +6
-7
lines changed
3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 14
14
jobs :
15
15
smoke-test :
16
16
name : Smoke test
17
- runs-on : ubuntu-latest
17
+ runs-on : devcontainer-image-builder-ubuntu
18
18
steps :
19
19
20
20
- name : Checkout
Original file line number Diff line number Diff line change @@ -5,9 +5,7 @@ RUN . /etc/os-release && if [ "${VERSION_CODENAME}" != "bullseye" ]; then exit 1
5
5
6
6
# Temporary: Upgrade python packages due to mentioned CVEs
7
7
# They are installed by the base image (continuumio/anaconda3) which does not have the patch.
8
- RUN conda install \
9
- # https://github.com/advisories/GHSA-q3qx-c6g2-7pw2
10
- aiohttp=3.9.0 \
8
+ RUN conda install \
11
9
# https://github.com/advisories/GHSA-v845-jxx5-vc9f
12
10
urllib3==1.26.18 \
13
11
# https://github.com/advisories/GHSA-jfhm-5ghh-2f97
@@ -37,7 +35,9 @@ RUN python3 -m pip install --upgrade \
37
35
# https://github.com/advisories/GHSA-3f63-hfp8-52jq
38
36
pillow==10.2.0 \
39
37
# https://github.com/advisories/GHSA-44cc-43rp-5947
40
- jupyterlab==4.0.11
38
+ jupyterlab==4.0.11 \
39
+ # https://github.com/advisories/GHSA-5h86-8mv2-jq9f
40
+ aiohttp==3.9.2
41
41
42
42
# Reset and copy updated files with updated privs to keep image size down
43
43
FROM mcr.microsoft.com/devcontainers/base:1-bullseye
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ checkPythonPackageVersion "requests" "2.31.0"
43
43
checkPythonPackageVersion " cryptography" " 41.0.7"
44
44
checkPythonPackageVersion " transformers" " 4.36.0"
45
45
checkPythonPackageVersion " mpmath" " 1.3.0"
46
- checkPythonPackageVersion " aiohttp" " 3.9.0 "
46
+ checkPythonPackageVersion " aiohttp" " 3.9.2 "
47
47
checkPythonPackageVersion " jupyter_server" " 2.7.2"
48
48
checkPythonPackageVersion " tornado" " 6.3.3"
49
49
checkPythonPackageVersion " pyarrow" " 14.0.1"
@@ -55,7 +55,6 @@ checkCondaPackageVersion "cryptography" "41.0.7"
55
55
checkCondaPackageVersion " requests" " 2.31.0"
56
56
checkCondaPackageVersion " pygments" " 2.15.1"
57
57
checkCondaPackageVersion " mpmath" " 1.3.0"
58
- checkCondaPackageVersion " aiohttp" " 3.9.0"
59
58
checkCondaPackageVersion " urllib3" " 1.26.17"
60
59
checkCondaPackageVersion " pyarrow" " 14.0.1"
61
60
You can’t perform that action at this time.
0 commit comments