Hi,
Can you provide the command of how will you create a docker container from our images?
This provides us better uderstanding of how to prepare for the docker image.
For example, the command will be exectued like:
```shell
$ docker run -v : -v : --it bash
# Inside the container
$ python eval.py --ds_path <> --out_path <>
```
or we should create an entrypoint or command from Dockerfile like this:
```Dockerfile
CMD ["python", "eval.py", "--ds_path", "/opt/input", "--out_path", "/opt/output"]
```
Thank you in advance.
Created by Joyce Fang joycefang Hello @joycefang,
your first option suits us best. That way it is easier for us to automate things.
Thanks for your input and have great day :)
Hannes Schnurre
Drop files to upload
Command for running the docker container when testing page is loading…