I am trying to find a docker image that includes both docker and git. I know docker images that includes docker (which does not include apt-get to install git on) and some other images that includes git (e.g. alpine/git or bitnami/git) without docker. But I need an image to include both. Would you please help me on this?
I tried following image:
- docker:latest
- alpine/git:latest
- bitnami/git:latest
dockercommands at all; trying toRUN git clone ...hits both authentication and layer-caching issues. Do you actually need these tools? Why? As @StephenNewell suggests, have you tried installing them on top of adebianorubuntubase image?