将Dockerfile COPY分成两段,缓存依赖库,重新构建不需要重新安装
This commit is contained in:
parent
ddeaf76422
commit
c65def90f3
@ -10,12 +10,14 @@ RUN echo '[global]' > /etc/pip.conf && \
|
|||||||
|
|
||||||
WORKDIR /gpt
|
WORKDIR /gpt
|
||||||
|
|
||||||
# 装载项目文件
|
|
||||||
COPY . .
|
|
||||||
|
|
||||||
# 安装依赖
|
# 安装依赖
|
||||||
|
COPY requirements.txt ./
|
||||||
RUN pip3 install -r requirements.txt
|
RUN pip3 install -r requirements.txt
|
||||||
|
# 装载项目文件
|
||||||
|
COPY . .
|
||||||
|
|
||||||
# 可选步骤,用于预热模块
|
# 可选步骤,用于预热模块
|
||||||
RUN python3 -c 'from check_proxy import warm_up_modules; warm_up_modules()'
|
RUN python3 -c 'from check_proxy import warm_up_modules; warm_up_modules()'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user