-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Dockerfile and introduction in readme #198
Conversation
Dockerfile
Outdated
@@ -0,0 +1,90 @@ | |||
# base image | |||
FROM ubuntu:focal |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello @mikihiroikura @arrenglover ! Just a curiosity, there is any reason you need to use Ubuntu 20.04 instead of a more modern distribution? We are discussing about dropping Ubuntu 20.04 support for apt dependencies in robotology/robotology-superbuild#1439, and I am afraid that the next YARP release will not support Ubuntu 20.04 with apt dependencies.
hey @traversaro ! Typically we are on Ubuntu 22.04 and I advise to use 22.04. However, we have some camera hardware that requires old drivers that install natively using 20.04 and so using Docker we can set the fixed versions of YARP etc. required that are compatible with 20.04 for those that need this old hardware. Eventually I want to update this dockerfile to use 22.04 and find the correct method to install the old drivers manually. when we get time to do it. Let me know if you have a better solution! thanks |
Ah, that is clear, thanks! Yes, unfortunately hardware drivers are a pain in the neck for what regards software update. |
Hello @traversaro @arrenglover . Thank you for the comments. |
…tion in docker.md
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
perect thanks
Modification