We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5fc8bf commit d482ba2Copy full SHA for d482ba2
1 file changed
Dockerfile
@@ -1,4 +1,5 @@
1
ARG ROS_DISTRO=humble
2
+ARG HOSTNAME=geonosis
3
4
FROM docker.io/osrf/ros:${ROS_DISTRO}-desktop
5
@@ -24,4 +25,18 @@ RUN apt update \
24
25
&& apt clean \
26
&& rm -rf /var/lib/apt/lists/*
27
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
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
+
42
CMD ["/bin/bash"]
0 commit comments