我是Docker的新手,我用docker build -t mycontainer .
我的Dockerfile的内容是
FROM python:3
COPY ./* /my-project/
RUN pip install -r requirements.txt
CMD python /my-project/main.py
在这里我得到一个错误:
Could not open requirements file: No such file or directory: 'requirements.txt'
我不确定本地的所有文件是否实际上都已复制到镜像中。
我想检查图像的内容,有什么办法可以做到?
任何帮助将不胜感激!
最佳答案
您只需要进入项目目录并运行pip命令。
最好的方法是设置WORKDIR /my-project
!
这是更新的文件
FROM python:3
COPY ./* /my-project/
WORKDIR /my-project
RUN pip install -r requirements.txt
CMD python /my-project/main.py
荣誉!
关于docker - 检查Docker镜像的文件内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/61719674/