You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would really help if you could setup docker support for this project.
The TrainAndTest python module requires python2 and a host of dependencies. If I could pull a docker container with all these dependencies, it would make life much easier - I could docker pull and run python main.py db ... or python main.py net ... with no additional effort
Similarly, you could build off of a ROS docker container for the DeepLCD C++ code. Having a docker container would help tremendously.
If you provide a Dockerfile, the typical usage for the user would be:
$ git clone https://github.com/rpng/calc
$ cd calc/TrainAndTest # Assuming there is a Dockerfile here
$ docker build calc/train:1.0 .
$ docker run -it --volume="/home/foo/bar/calc:/home/root/calc" calc/train:1.0 bin/bashroot@ubuntu:/# cd /home/root/calc/TrainAndTestroot@ubuntu:/# python main.py -h
It would really help if you could setup docker support for this project.
TrainAndTest
python module requires python2 and a host of dependencies. If I could pull a docker container with all these dependencies, it would make life much easier - I coulddocker pull
and runpython main.py db ...
orpython main.py net ...
with no additional effortDeepLCD
C++ code. Having a docker container would help tremendously.If you provide a
Dockerfile
, the typical usage for the user would be:Here is an example docker file for voxblox.
The text was updated successfully, but these errors were encountered: