2017-06-06 73 views
0

我嘗試用gitlab一個要註冊的圖像:泊塢打造「沒有這樣的文件或目錄」,但與工作泊塢窗,構成

docker build -t registry.gitlab.com/xxx/xxx compose/base 

,但我得到:

步驟4/7:COPY ./requirements LSTAT需求/要求:沒有 這樣的文件或目錄

但是與撰寫工作建立:

docker-compose -f dev.yml build python 


services: 
    python: 
    build: 
     context: . 
     dockerfile: ./compose/base/Dockerfile 

文件結構:

-Project /要求 -Project /作曲/基

如何複製什麼組成呢?

回答

1

你的問題是搬運工建設方面,我建議你試試這個:

docker build -t registry.gitlab.com/xxx/xxx -f compose/base/Dockerfile .