Skip to content

Commit d482ba2

Browse files
committed
added local PPA for pylon
1 parent c5fc8bf commit d482ba2

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
ARG ROS_DISTRO=humble
2+
ARG HOSTNAME=geonosis
23

34
FROM docker.io/osrf/ros:${ROS_DISTRO}-desktop
45

@@ -24,4 +25,18 @@ RUN apt update \
2425
&& apt clean \
2526
&& rm -rf /var/lib/apt/lists/*
2627

28+
# Local PPA for Basler proprietary packages
29+
RUN echo "deb [trusted=yes] http://${HOSTNAME}/debian ./" | tee -a /etc/apt/sources.list > /dev/null \
30+
&& apt update \
31+
&& apt install -y \
32+
libxcb-cursor-dev \
33+
&& apt install -y \
34+
codemeter \
35+
pylon \
36+
pylon-supplementary-package-for-blaze \
37+
&& export SUDO_FORCE_REMOVE=yes \
38+
&& apt autoremove -y \
39+
&& apt clean \
40+
&& rm -rf /var/lib/apt/lists/*
41+
2742
CMD ["/bin/bash"]

0 commit comments

Comments
 (0)