Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorific committed Sep 14, 2024
1 parent 2f824d4 commit cef7e16
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ros/noetic/ubuntu/focal/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ COPY ./ros_entrypoint.sh /
ENTRYPOINT ["/ros_entrypoint.sh"]
CMD ["bash"]

FROM ros-core as ros-base
FROM ros-core AS ros-base

# install bootstrap tools
RUN apt-get update && apt-get install --no-install-recommends -y \
Expand All @@ -76,28 +76,28 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& rm -rf /var/lib/apt/lists/*


FROM ros-base as robot
FROM ros-base AS robot

# install ros packages
RUN apt-get update && apt-get install -y --no-install-recommends \
ros-noetic-robot=1.5.0-1* \
&& rm -rf /var/lib/apt/lists/*

FROM ros-base as perception
FROM ros-base AS perception

# install ros packages
RUN apt-get update && apt-get install -y --no-install-recommends \
ros-noetic-perception=1.5.0-1* \
&& rm -rf /var/lib/apt/lists/*

FROM robot as desktop
FROM robot AS desktop

# install ros packages
RUN apt-get update && apt-get install -y --no-install-recommends \
ros-noetic-desktop=1.5.0-1* \
&& rm -rf /var/lib/apt/lists/*

FROM desktop as desktop-full
FROM desktop AS desktop-full

# install ros packages
RUN apt-get update && apt-get install -y --no-install-recommends \
Expand Down

0 comments on commit cef7e16

Please sign in to comment.