我正在基于标准 Ubuntu 14.04 映像构建一个新的 Docker 映像。
这是我的 Dockerfile :
FROM ubuntu:14.04
RUN apt-get update -y
RUN apt-get install -y nginx git python-setuptools python-dev
RUN easy_install pip
ADD . /code
WORKDIR /code
RUN pip install -r requirements.txt # only 'django' for now
ENV projectname myproject
EXPOSE 80 8000
WORKDIR ${projectname}
CMD ['python', 'manage.py', 'runserver', '0.0.0.0:80']
当我尝试运行此图像时,我收到此错误…
/bin/sh: 1: [python,: 未找到
但是,如果我在运行映像时打开 shell,运行 python
会按预期打开交互式提示。
为什么我不能在 Dockerfile 中调用 python
到 CMD
?
原文由 Joe Mornin 发布,翻译遵循 CC BY-SA 4.0 许可协议
在 CMD 中使用
"
而不是'
。 (文档)