Skip to content
Open
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
2 changes: 2 additions & 0 deletions docker-compose/selenium-env-vars.env
Original file line number Diff line number Diff line change
Expand Up @@ -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}
5 changes: 4 additions & 1 deletion msls-local/Dockerfile.msls
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading