Skip to content

Commit d5314b3

Browse files
committed
Merge branch 'main' into HEA-898/aide_alimentaire
2 parents 9811c9c + 0d4321e commit d5314b3

3 files changed

Lines changed: 24 additions & 10 deletions

File tree

docker-compose.override.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ services:
2626
- /usr/src/app/jupyter
2727
- /usr/src/app/log
2828
- /usr/src/app/media
29-
# Ignore the local .env file, to avoid it conflicting with variables set
30-
# in the docker-compose.yml file, particularly by Dagster
31-
- ./env.example:/usr/src/app/.env
3229
environment:
3330
DJANGO_SETTINGS_MODULE: hea.settings.local
3431
LAUNCHER: ${LAUNCHER} # e.g. "debugpy" or "ddtrace"
@@ -54,9 +51,6 @@ services:
5451
- /usr/src/app/jupyter
5552
- /usr/src/app/log
5653
- /usr/src/app/media
57-
# Ignore the local .env file, to avoid it conflicting with variables set
58-
# in the docker-compose.yml file, particularly by Dagster
59-
- ./env.example:/usr/src/app/.env
6054
environment:
6155
DJANGO_SETTINGS_MODULE: hea.settings.local
6256
LAUNCHER: ${LAUNCHER} # e.g. "debugpy" or "ddtrace"
@@ -75,9 +69,6 @@ services:
7569
- /usr/src/app/jupyter
7670
- /usr/src/app/log
7771
- /usr/src/app/media
78-
# Ignore the local .env file, to avoid it conflicting with variables set
79-
# in the docker-compose.yml file, particularly by Dagster
80-
- ./env.example:/usr/src/app/.env
8172
environment:
8273
DJANGO_SETTINGS_MODULE: hea.settings.local
8374
LAUNCHER: ${LAUNCHER} # e.g. "debugpy" or "ddtrace"

docker-compose.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,9 @@ services:
101101
DAGSTER_ASSET_BASE_PATH: ${DAGSTER_ASSET_BASE_PATH}
102102
DAGSTER_WEBSERVER_URL: ${DAGSTER_WEBSERVER_URL}
103103
DAGSTER_WEBSERVER_PREFIX: pipelines
104+
DAGSTER_S3_BUCKET: ${DAGSTER_S3_BUCKET}
105+
DAGSTER_S3_PREFIX: ${DAGSTER_S3_PREFIX}
106+
DAGSTER_S3_LOG_PATH: ${DAGSTER_S3_LOG_PATH}
104107
AWS_ACCESS_KEY_ID: ${MINIO_ROOT_USER}
105108
AWS_SECRET_ACCESS_KEY: ${MINIO_ROOT_PASSWORD}
106109
AWS_ENDPOINT_URL_S3: ${MINIO_ENDPOINT_URL}

docker/app/run_tests.sh

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ fi
5353
# the vulnerable GMLAS driver, potentially rendering the application
5454
# unresponsive. The issue is mitigated by introducing a limit on entity
5555
# expansions and aborting parsing when the limit is exceeded.
56+
# Vulnerability ID: 82915
57+
# Affected spec: <3.12.1
58+
# ADVISORY: Affected versions of the gdal package are vulnerable to
59+
# path traversal due to insufficient path sanitization in multiple drivers.
5660

5761
# Ignore vulnerability found in jinja2 version 3.1.4
5862
# We do not allow any untrusted templates, and so are not affected.
@@ -66,8 +70,24 @@ fi
6670
# shouldn't use untrusted templates without sandboxing.
6771
# CVE-2019-8341
6872

73+
# Vulnerability found in nbconvert version 7.16.6
74+
# Vulnerability ID: 83150
75+
# Affected spec: <=7.16.6
76+
# ADVISORY: Affected versions of the nbconvert package are
77+
# vulnerable to Uncontrolled Search Path Element due to resolving the
78+
# inkscape executable on Windows using a search order that includes the
79+
# current working directory. In nbconvert/preprocessors/svg2pdf.py, the PDF
80+
# conversion flow for notebooks with SVG outputs locates and executes
81+
# inkscape without a fully qualified path, allowing a local inkscape.bat to
82+
# be selected and run.
83+
# NOTE: jupyterlab==4.4.8 uses nbconvert==7.16.6 and there is currently no patched version
84+
# of nbconvert for CVE-2025-53000.
85+
# The vulnerability was only published on December 17-18, 2025, and version 7.16.6 remains
86+
# the latest release.
87+
# Will ignore this and update once we got a fix
88+
6989
echo Package Vulnerabilities:
70-
pip freeze | safety check --stdin --full-report -i 62283 -i 70612 -i 74054
90+
pip freeze | safety check --stdin --full-report -i 62283 -i 70612 -i 74054 -i 82915 -i 83150
7191
SAFETY_RESULT=$?
7292

7393
# Suppress SAFETY_RESULT unless CHECK_SAFETY is set

0 commit comments

Comments
 (0)