I was following along with an article and I am pretty confused on how to convert this https://github.com/jpetazzo/nsenter to a docker container or image?? I am pretty confused and the article assumed as if I knew how to do it?
I was following along with an article and I am pretty confused on how to convert this https://github.com/jpetazzo/nsenter to a docker container or image?? I am pretty confused and the article assumed as if I knew how to do it?
2
Answers
You could download the Dockerfile and then run
docker build .
in the directory that you save the Dockerfile to. That will create a Docker image, which you can build a container based off of.Here is two possible ways: