Reputation: 31
I want to install JLink in my docker's ubuntu container. I downloaded JLink_Linux_V680_x86_64.deb and copied it from host OS to ubuntu container and tried to run
apt-get install ./JLink_Linux_V680_x86_64.deb
But couldn't install it. How can I install JLink in the ubuntu container?
Upvotes: 0
Views: 3406
Reputation: 179
You can try below command.
sudo docker cp JLink_Linux_x86_64.deb <container_id>:/home/JLink_Linux_x86_64.deb
ls /home/
dpkg -i /home/JLink_Linux_V647f_x86_64.deb
Check this for more details
Upvotes: 1