我想在頂部構(gòu)建我的 dockerfile 。它是 ubuntu + python。該第 3 方 docker 文件:FROM ubuntu:latestMAINTAINER fnndsc "dev@babymri.org"RUN apt-get update \? && apt-get install -y python3-pip python3-dev \? && cd /usr/local/bin \? && ln -s /usr/bin/python3 python \? && pip3 install --upgrade pipENTRYPOINT ["python3"] #this entry point line is my concern但我想用作我自己的 dockerfile 的基礎(chǔ):FROM fnndsc/ubuntu-python3RUN pip install enum34 llvmlite numbaRUN mkdir -p ./voice_flask/dWORKDIR /voice_flask/dCOPY . /voice_flask/dCMD ["python", "server.py"]問(wèn)題:基本圖像的 dockerfile 在入口點(diǎn)停止——但我不需要這個(gè)入口點(diǎn),我有我自己的最后一個(gè)命令——“CMD python server.py”。那個(gè) ENTRYPOINT 會(huì)影響我自己的 dockerfile 嗎?那個(gè)基本的 dockerfile 是否被執(zhí)行并等待在 python shell 中?編輯:換句話說(shuō),是否執(zhí)行了基本 dockerfile?或者我只是拉圖像,我自己的 dockerfile 是建立在它之上的?
當(dāng)拉取 docker 圖像并在我自己的圖像中使用它時(shí) - 它會(huì)停在最后一行嗎?
慕田峪7331174
2023-06-20 10:18:13