Skip to content

Commit

Permalink
#273: Added jupyterenv/bin to evironment variable PATH inside the Do…
Browse files Browse the repository at this point in the history
…ckerContainer
  • Loading branch information
ckunki committed Aug 8, 2024
1 parent a2c4aa0 commit 0cfbceb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/changes/changes_2.1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Version: 2.1.0
* #279: Made the notebooks tests running in SaaS as well as in the Docker-DB.
* #19: Added SLC notebook
* #301: Added CloudFront distribution for example data S3 bucket
* #273: Added `jupyterenv/bin` to evironment variable `PATH` inside the DockerContainer

## Security

Expand Down
3 changes: 2 additions & 1 deletion exasol/ds/sandbox/lib/dss_docker/create_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ def _commit_container(
"Env": [
f"VIRTUAL_ENV={virtualenv}",
f"NOTEBOOK_FOLDER_FINAL={notebook_folder_final}",
f"NOTEBOOK_FOLDER_INITIAL={notebook_folder_initial}"
f"NOTEBOOK_FOLDER_INITIAL={notebook_folder_initial}",
f'PATH="$PATH:{virtualenv}/bin"',
],
}
img = container.commit(repository=self.image_name, conf=conf)
Expand Down

0 comments on commit 0cfbceb

Please sign in to comment.