You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Fixing Vulnerabilities and Verifying Library Upgrades
244
+
245
+
### 1. Updating Vulnerable Dependencies
246
+
If a vulnerability is reported in a dependency (e.g., via Aikido, Snyk, or another scanner), update the affected package in `requirements.in` to the latest secure version. For example, to update `teradatasql`:
247
+
248
+
```shell
249
+
# Edit requirements.in and set the desired version, e.g.:
250
+
teradatasql==20.0.0.30
251
+
252
+
# Recompile requirements.txt:
253
+
pip-compile requirements.in
254
+
```
255
+
256
+
### 2. Rebuilding the Docker Image
257
+
After updating dependencies, rebuild the Docker image to ensure the new versions are installed:
0 commit comments