简体   繁体   中英

Docker: Clone git repo in current directory

I am using docker to clone a public repository. It's cloned successfully. But I don't know where its cloned? Also how can I clone the repo in my current working directory using docker?

Dockerfile

FROM debian:stretch

RUN apt-get update
RUN apt-get install -y git
RUN git clone https://github.com/ishpreet-singh/Sudoku.git

Terminal

root@ubuntu:/home/hp1/Desktop/src/sample# docker build -t img2 .
Sending build context to Docker daemon  2.048kB
Step 1/4 : FROM debian:stretch
 ---> 6d83de432e98
Step 2/4 : RUN apt-get update
 ---> Using cache
 ---> 5ad3bd342683
Step 3/4 : RUN apt-get install -y git
 ---> Using cache
 ---> 29bdeb15539f
Step 4/4 : RUN git clone https://github.com/ishpreet-singh/Sudoku.git
 ---> Running in 613bdd58bc99
Cloning into 'Sudoku'...
 ---> ba9f61f10baf
Removing intermediate container 613bdd58bc99
Successfully built ba9f61f10baf
Successfully tagged img2:latest

The repository will be cloned to theWORKDIR directory which defaults to / .

So after logging into container you'll find the cloned repository under /Sudoku .

Cloning a git repo using docker seems to be a strange scenario? Why would one do that?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM