我正在使用docker来克隆公共存储库。它已成功克隆。但我不知道克隆的位置?另外如何使用docker克隆当前工作目录中的repo?
Dockerfile
FROM debian:stretch
RUN apt-get update
RUN apt-get install -y git
RUN git clone https://github.com/ishpreet-singh/Sudoku.git
终端
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
答案 0 :(得分:1)