Skip to content

Commit

Permalink
docker build error fix attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
woensug-choi committed Jun 5, 2024
1 parent 6436522 commit ed0250c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .docker/jazzy.amd64.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ FROM osrf/ros:$ROS_DISTRO-desktop-full
ARG BRANCH="ros2"

# hadolint ignore=DL3008
RUN apt-get update \
RUN apt-get update && \
apt-get install -y --no-install-recommends \
sudo build-essential gfortran automake \
bison flex libtool git wget locales \
bison flex libtool git wget \
software-properties-common nano && \
rm -rf /var/lib/apt/lists/

Expand Down
2 changes: 1 addition & 1 deletion .docker/jazzy.arm64v8.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ RUN apt-get update \
ENV DEBIAN_FRONTEND noninteractive
ENV DEBCONF_NONINTERACTIVE_SEEN=true
# hadolint ignore=DL3008
RUN apt-get update \
RUN apt-get update && \
apt-get install -y --no-install-recommends \
sudo build-essential gfortran automake \
bison flex libtool git wget \
Expand Down

0 comments on commit ed0250c

Please sign in to comment.