document2slide-demo / README copy.md
quantaji's picture
add all other all
9ee83a7
|
raw
history blame
495 Bytes
# docker integration of existing code
build docker
```sh
docker build --tag doc2slide -f Dockerfile .
```
run in interactive mode and use gpu
```sh
docker run --name test --gpus all -p 7080:8070 -p 7081:8071 -p 7860:7860 --rm -it doc2slide bash
```
current version of grobid 0.7.3 have python 3.8.10 and openjdk 17. To run as a service
```sh
docker run -d --name test --gpus all -p 7080:8070 -p 7081:8071 -p 7860:7860 --rm doc2slide
```
https://shinylive.io/py/examples gives a lot of examples