- Introduce Docker build ARG `ONNXRUNTIME_REPO`
to allow building Docker container based on a different git repo.
Example docker build command:
```bash
cd dockerfiles
docker build -t onnx-runtime \
--build-arg ONNXRUNTIME_REPO=https://github.com/jthelin/onnxruntime \
--build-arg ONNXRUNTIME_SERVER_BRANCH=my-branch \
-f Dockerfile.server .
```
- Add a basic `.dockerignore` file, to cut down the number of filles passed into the Docker build context.
* Adding the onnxruntime Dockerfile and instructions
* Adding the onnxruntime server Dockerfile with build and instructions
* Specify more details in instruction
* Update dockerfiles/README.md
Co-Authored-By: tianchijushi <huaimingyang@hotmail.com>
* Update Dockerfile.server
Specify the onnxruntime server build branch during git clone