This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM library/ubuntu:14.04 | |
| RUN echo "deb http://archive.ubuntu.com/ubuntu/ trusty multiverse" >> /etc/apt/sources.list | |
| RUN echo "deb http://archive.ubuntu.com/ubuntu/ trusty-updates multiverse" >> /etc/apt/sources.list | |
| RUN apt-get update | |
| RUN apt-get dist-upgrade -y | |
| RUN apt-get install --no-install-recommends -y curl | |
| RUN curl http://doc.instantreality.org/media/uploads/downloads/2.8.0/InstantReality-Ubuntu-14.04-x64-2.8.0.38619.deb > /tmp/InstantReality-Ubuntu-14.04-x64-2.8.0.38619.deb | |
| RUN dpkg -i /tmp/InstantReality-Ubuntu-14.04-x64-2.8.0.38619.deb || exit 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## You may choose from: | |
| #FROM library/ubuntu:14.04 | |
| #FROM ros:indigo-ros-core | |
| #FROM ros:jade-ros-core | |
| #FROM library/ubuntu:16.04 | |
| FROM ros:kinetic-ros-core | |
| ARG USERNAME=citkuser | |
| ARG EMAIL=citkuser@localhost | |
| ARG PASSWORD=citkuser |