1. 程式人生 > 其它 >dockerfile add資料夾_docker 使用DockerFile構建image

dockerfile add資料夾_docker 使用DockerFile構建image

技術標籤:dockerfile add資料夾

記錄下從阿里雲建立映象的方法

Dockerfile檔案內容如下

# Base Images
FROM registry.cn-shanghai.aliyuncs.com/tcc-public/python:3

## 把當前資料夾裡的檔案構建到映象的根目錄下
ADD . /

## 指定預設工作目錄為根目錄(需要把run.sh和生成的結果檔案都放在該資料夾下)
WORKDIR /

## 在構建映象時安裝依賴包
RUN pip install -i https://mirrors.aliyun.com/pypi/simple -r requirements.txt

## 映象啟動後統一執行 sh run.sh
CMD ["sh", "run.sh"]

之前遇到個坑把RUN pip install寫到了ADD前,報了這個錯,找不到requirements.txt檔案

df4d1157e202b5fa5fa1238cdca46484.png

指定預設工作目錄這個是什麼,待補充