我正在尝试在docker中部署Flask应用程序,当我在执行本地python server.py时可以访问default-config.yaml文件,但是在docker环境中被渲染为不存在
文件夹的结构是
foo
├── __init__.py
├── config
│ └── default-config.yaml
└── web
├── __init__.py
│
└── server.py
在本地运行时,它已成功编译
使用时docker run image,它给出错误The file '<--MYPATH-->' does not exist
__main__.ConfigFileDoesNotExistException: The file '../config/default-config.yaml' does not exist
构建图像时,ls '<--MYPATH-->'显示文件在那里。
Step 4/9 : RUN ls ./foo/config
---> Running in 1e3096b9ccf0
default-config.yaml
PS我已经使用了ADD。/ code和WORKDIR / code
非常困惑为什么文件被解释为不存在。有什么提示吗?
谢谢
码头工人文件在下面
FROM python:3.4-alpine
ADD . /code
WORKDIR /code
RUN ls ./foo/config
RUN apk update && \
apk add --virtual build-deps gcc python-dev musl-dev && \
apk add postgresql-dev
RUN pip install psycopg2
RUN python3 setup.py install
RUN pip install -r requirements.txt
CMD ["python3", "./foo/web/server.py"]
相关分类