Docker图像错误:“/ bin / sh:1:[python,:not found” [英] Docker image error: "/bin/sh: 1: [python,: not found"

查看:2913
本文介绍了Docker图像错误:“/ bin / sh:1:[python,:not found”的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在基于标准的Ubuntu 14.04映像构建一个新的Docker映像。

I'm building a new Docker image based on the standard Ubuntu 14.04 image.

这是我的Dockerfile :

Here's my 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']

当我尝试运行此图像时,我收到此错误...

When I try to run this image, I get this error...


/ bin / sh: 1:[python,:not found

/bin/sh: 1: [python,: not found

但是,如果我在运行图像时打开shell,运行 python 按预期打开交互式提示。

But if I open a shell when running the image, running python opens the interactive prompt as expected.

为什么我无法通过 CMD 调用 python 在Docker文件中?

Why can't I invoke python through CMD in the Dockerfile?

推荐答案

使用而不是'在CMD。(文档)

Use " instead of ' in CMD. (Documentation)

这篇关于Docker图像错误:“/ bin / sh:1:[python,:not found”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆