Created
April 3, 2017 17:47
-
-
Save safijari/6c80465058f49fbea7344c753b3c69a7 to your computer and use it in GitHub Desktop.
Basic ROS Kinetic Dockerfile with some additional niceties
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 osrf/ros:kinetic-desktop-full | |
RUN locale-gen en_US.UTF-8 | |
ENV LANG en_US.UTF-8 | |
RUN apt-get update && apt-get install -y \ | |
tmux \ | |
zsh \ | |
curl \ | |
wget \ | |
vim \ | |
emacs24 \ | |
sudo \ | |
libgl1-mesa-glx \ | |
libgl1-mesa-dri \ | |
mesa-utils \ | |
unzip \ | |
&& rm -rf /var/likb/apt/lists/* | |
CMD ["zsh"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment