From af909e59b3556a563c437b4b9f8f51c538b6fb1c Mon Sep 17 00:00:00 2001 From: Shivam Tiwari Date: Mon, 24 Nov 2025 10:53:48 -0500 Subject: [PATCH 1/2] BB2-4268: Add default fhir-v3 url for running selenium tests locally --- docker-compose/selenium-env-vars.env | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose/selenium-env-vars.env b/docker-compose/selenium-env-vars.env index 2994a6606..f6c47b55d 100755 --- a/docker-compose/selenium-env-vars.env +++ b/docker-compose/selenium-env-vars.env @@ -6,3 +6,5 @@ DJANGO_SETTINGS_MODULE=${DJANGO_SETTINGS_MODULE} # Force to true in case false in .env DB_MIGRATIONS=true + +FHIR_URL_V3=${FHIR_URL_V3:-https://prod-sbx.fhir.bfd.cmscloud.local} From d8b9090e35325155324d8482a19ffd2225aeafb1 Mon Sep 17 00:00:00 2001 From: Shivam Tiwari Date: Wed, 26 Nov 2025 11:32:42 -0500 Subject: [PATCH 2/2] updated dependency --- dev-local/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-local/Dockerfile b/dev-local/Dockerfile index 0e814aba4..acb16fdfe 100644 --- a/dev-local/Dockerfile +++ b/dev-local/Dockerfile @@ -6,7 +6,10 @@ WORKDIR /code COPY requirements.txt . RUN pip install --no-cache-dir --upgrade pip && \ - pip install --no-cache-dir -r requirements.txt + pip install --no-cache-dir -r requirements.txt && \ + pip install --no-cache-dir debugpy + +COPY . . EXPOSE 8080