Skip to content

Commit 43a868e

Browse files
committed
test dynamically getting feature branch image
1 parent 2f1e0c5 commit 43a868e

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.devcontainer/devcontainer.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
2-
"image": "ghcr.io/sage-bionetworks/genie:develop",
3-
"mounts": [
4-
"source=${localEnv:HOME}/.synapseConfig,target=/root/.synapseConfig,type=bind,consistency=cached"
5-
]
2+
"name": "genie-dev",
3+
"image": "ghcr.io/sage-bionetworks/genie:${localEnv:BRANCH_NAME}",
4+
"mounts": [
5+
"source=${localEnv:HOME}/.synapseConfig,target=/root/.synapseConfig,type=bind,consistency=cached"
6+
],
7+
"runArgs": ["--env", "BRANCH_NAME=${localEnv:BRANCH_NAME}"],
8+
"workspaceFolder": "/workspace"
69
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ These are instructions on how you would develop and test the pipeline locally.
107107
pip install -r requirements-dev.txt
108108
```
109109
110-
If you are having trouble with the above, try installing via `pipenv`
110+
If you are having trouble with the above, try installing via [pipenv](https://pipenv.pypa.io/en/latest/installation.html)
111111
112112
1. Specify a python version that is supported by this repo:
113113
```pipenv --python <python_version>```

0 commit comments

Comments
 (0)