We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb9b4db commit c9aff55Copy full SHA for c9aff55
Dockerfile.ubuntu
@@ -23,5 +23,10 @@ COPY --from=builder /root/bcc/*.deb /root/bcc/
23
24
RUN \
25
apt-get update -y && \
26
- DEBIAN_FRONTEND=noninteractive apt-get install -y python python3 binutils libelf1 kmod python-dnslib python-cachetools python3-dnslib python3-cachetools && \
+ DEBIAN_FRONTEND=noninteractive apt-get install -y python python3 python3-pip binutils libelf1 kmod && \
27
+ if [ ${OS_TAG} = "18.04" ];then \
28
+ apt-get -y install python-pip && \
29
+ pip install dnslib cachetools ; \
30
+ fi ; \
31
+ pip3 install dnslib cachetools && \
32
dpkg -i /root/bcc/*.deb
0 commit comments