Spaces:
Running
Running
Merge pull request #90 from biggraph/darabos-bionemo
Browse files
examples/{BioNemo demo → BioNeMo demo}
RENAMED
File without changes
|
lynxkite-graph-analytics/Dockerfile.bionemo
CHANGED
@@ -15,3 +15,7 @@ RUN uv pip install -e lynxkite-core/[dev] -e lynxkite-app/[dev] -e lynxkite-grap
|
|
15 |
|
16 |
# bionemo cellxgene_census needs this version of numpy
|
17 |
RUN uv pip install numpy==1.26.4
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
# bionemo cellxgene_census needs this version of numpy
|
17 |
RUN uv pip install numpy==1.26.4
|
18 |
+
|
19 |
+
ENV LYNXKITE_DATA=examples
|
20 |
+
|
21 |
+
CMD ["lynxkite"]
|
lynxkite-graph-analytics/README.md
CHANGED
@@ -28,13 +28,12 @@ To build the image:
|
|
28 |
```bash
|
29 |
# in lynxkite-graph-analytics folder
|
30 |
$ docker build -f Dockerfile.bionemo -t lynxkite-bionemo ..
|
|
|
31 |
```
|
32 |
|
33 |
Take into account that this Dockerfile does not include the lynxkite-lynxscribe package. If you want to include it you will
|
34 |
need to set up git credentials inside the container.
|
35 |
|
36 |
-
Then, inside the image you can start LynxKite as usual.
|
37 |
-
|
38 |
If you want to do some development, then it is recommend to use the [devcontainers](https://code.visualstudio.com/docs/devcontainers/containers)
|
39 |
vscode extension. The following is a basic configuration to get started:
|
40 |
|
|
|
28 |
```bash
|
29 |
# in lynxkite-graph-analytics folder
|
30 |
$ docker build -f Dockerfile.bionemo -t lynxkite-bionemo ..
|
31 |
+
$ docker run --name bionemo -d -p8000:8000 --gpus=all lynxkite-bionemo
|
32 |
```
|
33 |
|
34 |
Take into account that this Dockerfile does not include the lynxkite-lynxscribe package. If you want to include it you will
|
35 |
need to set up git credentials inside the container.
|
36 |
|
|
|
|
|
37 |
If you want to do some development, then it is recommend to use the [devcontainers](https://code.visualstudio.com/docs/devcontainers/containers)
|
38 |
vscode extension. The following is a basic configuration to get started:
|
39 |
|