Update README.md

This commit is contained in:
Ihsan Soydemir 2023-08-03 16:49:45 +02:00 committed by GitHub
parent d4844b93ae
commit a5bc57e279
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@ A simple Dockerfile for non-GPU OpenBLAS, where the model is located outside the
```
cd ./openblas_simple
docker build -t openblas_simple .
docker run -e USE_MLOCK=0 -e MODEL=/var/model/<model-path> -v <model-root-path>:/var/model -t openblas_simple
docker run --cap-add SYS_RESOURCE -e USE_MLOCK=0 -e MODEL=/var/model/<model-path> -v <model-root-path>:/var/model -t openblas_simple
```
where `<model-root-path>/<model-path>` is the full path to the model file on the Docker host system.