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
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/* |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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 \ |
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 ros:rolling | |
RUN apt-get update && \ | |
apt-get install -y \ | |
fish \ | |
python3-pip \ | |
wget \ | |
&& pip3 install \ | |
asciinema \ | |
scspell3k \ |
OlderNewer