Skip to content

Instantly share code, notes, and snippets.

@ruffsl
ruffsl / Dockerfile
Last active January 22, 2020 01:40
ROS1 Realsense demo
ARG FROM_IMAGE=ros:melodic
# multi-stage for caching
FROM $FROM_IMAGE AS cache
# install bootstrap tools
RUN apt-get update && apt-get install --no-install-recommends -y \
python3-vcstool \
&& rm -rf /var/lib/apt/lists/*
@ruffsl
ruffsl / ros1_gazebo_magnet.ipynb
Last active April 23, 2020 01:32
ROS1 Gazebo Orbits
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ruffsl
ruffsl / Dockerfile
Created July 14, 2020 01:24
Gazebo9 source build with DART and ROS1 Melodic
ARG FROM_IMAGE=ros:melodic
ARG UNDERLAY_WS=/opt/underlay_ws
# multi-stage for caching
FROM $FROM_IMAGE AS cacher
# install helper packages
RUN apt-get update && apt-get install -y \
curl \
git \
@ruffsl
ruffsl / Dockerfile
Last active August 13, 2024 08:39
Colcon cache & clean demo
FROM ros:rolling
RUN apt-get update && \
apt-get install -y \
fish \
python3-pip \
wget \
&& pip3 install \
asciinema \
scspell3k \