Skip to content

Commit 121b257

Browse files
committed
Add Docker instructions to README.md
1 parent 226cc54 commit 121b257

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Python bindings to [TrustyAI](https://kogito.kie.org/trustyai/)'s explainability
55

66
## Setup
77

8+
### Local
9+
810
The minimum dependencies can be installed with
911

1012
```shell
@@ -17,6 +19,18 @@ If running the examples or developing, also install the development dependencies
1719
pip install -r requirements-dev.txt
1820
```
1921

22+
### Docker
23+
24+
Alternatively create a container image and run it using
25+
26+
```shell
27+
$ docker build -f Dockerfile -t ruivieira/python-trustyai:latest .
28+
$ docker run --rm -it -p 8888:8888 ruivieira/python-trustyai:latest
29+
```
30+
31+
The Jupyter server will be available at `localhost:8888`.
32+
33+
2034
## Getting started
2135

2236
To initialise, import the module and specify the location of the `explainability-core` JAR.

0 commit comments

Comments
 (0)