Skip to content

Instantly share code, notes, and snippets.

@safijari
Created April 3, 2017 17:47
Show Gist options
  • Save safijari/6c80465058f49fbea7344c753b3c69a7 to your computer and use it in GitHub Desktop.
Save safijari/6c80465058f49fbea7344c753b3c69a7 to your computer and use it in GitHub Desktop.
Basic ROS Kinetic Dockerfile with some additional niceties
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