Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pinned libwebp to resolve CVE #1236

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ci/scripts/github/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ function update_conda_env() {
rapids-logger "Checking for updates to conda env"

# Update the packages
rm -rf /opt/conda/.condarc /opt/conda/envs/morpheus/lib/python3.10/site-packages/fastjsonschema-2.18.0.dist-info
rapids-mamba-retry env update -n morpheus --prune -q --file ${ENV_YAML}

# Finally, reactivate
Expand Down
3 changes: 2 additions & 1 deletion docker/conda/environments/cuda11.8_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ dependencies:
- isort
- libgrpc>=1.49
- librdkafka=1.9.2
- mlflow>=2.2.1,<3
- libwebp>=1.3.2 # Required for CVE mitigation: https://nvd.nist.gov/vuln/detail/CVE-2023-4863
- mlflow>=2.2.1,<2.7
- mrc=23.07
- networkx=3.1
- ninja=1.10
Expand Down
3 changes: 2 additions & 1 deletion docker/conda/environments/cuda11.8_examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ dependencies:
- dask>=2023.1.1
- dill=0.3.6
- distributed>=2023.1.1
- mlflow>=2.2.1,<3
- libwebp>=1.3.2 # Required for CVE mitigation: https://nvd.nist.gov/vuln/detail/CVE-2023-4863
- mlflow>=2.2.1,<2.7
- papermill=2.3.4
- s3fs>=2023.6
- pip
Expand Down
1 change: 1 addition & 0 deletions models/mlflow/docker/conda/mlflow-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ channels:
dependencies:
- boto3
- onnx
- libwebp>=1.3.2 # Required for CVE mitigation: https://nvd.nist.gov/vuln/detail/CVE-2023-4863
- psycopg2<3
- pymysql
- python=3.11