Skip to content

Commit 06d6fde

Browse files
author
$(git config --global user.name)
committed
Update dockerfile to install from dependencies.txt
1 parent 9cda894 commit 06d6fde

File tree

3 files changed

+12
-28
lines changed

3 files changed

+12
-28
lines changed

.devcontainer/devcontainer.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"initializeCommand": "xhost +local:",
44
"build": {
55
"dockerfile": "${localWorkspaceFolder}/docker/Dockerfile",
6+
"context": "..",
67
"target": "base",
78
"args": {
89
"WB_HUMANOID_MPC_DIR": "/wb_humanoid_mpc_ws",

dependencies.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
clang-format
22
make
33
build-essential
4-
locales
54
libeigen3-dev
65
libglpk-dev
76
libboost-all-dev
@@ -18,3 +17,4 @@ ros-${ROS_DISTRO}-joint-state-publisher-gui
1817
ros-${ROS_DISTRO}-xacro
1918
ros-${ROS_DISTRO}-mcap-vendor
2019
ros-${ROS_DISTRO}-interactive-markers
20+
ros-${ROS_DISTRO}-pinocchio

docker/Dockerfile

+10-27
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BASE_IMAGE=ubuntu:24.04
1+
ARG BASE_IMAGE=ros:jazzy-ros-base
22
FROM ${BASE_IMAGE} AS base
33

44
ARG USER_ID=1000
@@ -10,36 +10,19 @@ ENV ROS_DISTRO=jazzy
1010

1111
# Install system dependencies, ROS, Python, and development tools in a single step
1212
RUN apt-get update && apt-get install -y --no-install-recommends \
13-
curl gnupg2 lsb-release locales software-properties-common \
14-
git build-essential clang-format make ninja-build \
15-
python3-pygame libeigen3-dev libglpk-dev libboost-all-dev \
16-
libboost-filesystem-dev libboost-log-dev libglfw3-dev \
17-
x11-apps mesa-utils \
13+
curl gnupg2 lsb-release software-properties-common \
14+
locales \
15+
git \
16+
x11-apps \
17+
mesa-utils \
18+
gettext-base \
1819
&& rm -rf /var/lib/apt/lists/*
1920

20-
# Set up locales
21-
RUN locale-gen en_US.UTF-8 && update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8
22-
ENV LANG en_US.UTF-8 LANGUAGE en_US:en LC_ALL en_US.UTF-8
21+
COPY dependencies.txt /tmp/dependencies.txt
2322

24-
# Install Python and pip
2523
RUN apt-get update && \
26-
apt-get install -y --no-install-recommends \
27-
python${PYTHON_VERSION} python${PYTHON_VERSION}-dev python${PYTHON_VERSION}-tk libpython${PYTHON_VERSION}-dev \
28-
python3-pip python3-argcomplete \
29-
&& rm -rf /var/lib/apt/lists/*
30-
RUN ln -sf /usr/bin/python${PYTHON_VERSION} /usr/bin/python3
31-
RUN python3 -m pip install --break-system-packages --no-cache-dir --upgrade setuptools cython catkin_pkg colcon-common-extensions
32-
33-
# Add ROS2 repository and install core packages
34-
RUN curl -sSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | apt-key add - && \
35-
echo "deb http://packages.ros.org/ros2/ubuntu $(lsb_release -cs) main" > /etc/apt/sources.list.d/ros2-latest.list
36-
RUN apt-get update && apt-get install -y --no-install-recommends \
37-
ros-${ROS_DISTRO}-desktop ros-${ROS_DISTRO}-ament-cmake \
38-
ros-${ROS_DISTRO}-ament-cmake-clang-format \
39-
ros-${ROS_DISTRO}-joint-state-publisher-gui ros-${ROS_DISTRO}-xacro \
40-
ros-${ROS_DISTRO}-mcap-vendor ros-${ROS_DISTRO}-interactive-markers \
41-
ros-${ROS_DISTRO}-std-msgs ros-${ROS_DISTRO}-pinocchio \
42-
&& rm -rf /var/lib/apt/lists/*
24+
envsubst < /tmp/dependencies.txt | xargs apt-get install -y --no-install-recommends && \
25+
rm -rf /var/lib/apt/lists/*
4326

4427
# Increase Git buffer size
4528
RUN git config --global http.postBuffer 1048576000

0 commit comments

Comments
 (0)