Quantcast
Viewing all articles
Browse latest Browse all 14040

Finding dependencies of a docker image

I have a docker image and I want to be able to find out how to find out all the dependencies that are being pulled from the internet. I tried looking for an open source program to do this for me but I could not find anything that seems suitable. I am now trying to write my own app in python. Does anyone know where to start?

This is a section of my dockerfile

RUN wget -q https://www.apache.org/dist/zookeeper/zookeeper-${ZOOKEEPER_VERSION}/zookeeper-${ZOOKEEPER_VERSION}.tar.gz && \    wget -q https://www.apache.org/dist/zookeeper/KEYS && \    wget -q https://www.apache.org/dist/zookeeper/zookeeper-${ZOOKEEPER_VERSION}/zookeeper-${ZOOKEEPER_VERSION}.tar.gz.asc && \    wget -q https://www.apache.org/dist/zookeeper/zookeeper-${ZOOKEEPER_VERSION}/zookeeper-${ZOOKEEPER_VERSION}.tar.gz.sha256

Viewing all articles
Browse latest Browse all 14040

Trending Articles