我有一个安装的docker映像grunt
,但是当我尝试运行它时,出现错误:
Error response from daemon: Cannot start container foo_1: \
exec: "grunt serve": executable file not found in $PATH
如果我以交互方式运行bash,grunt
则可用。
我究竟做错了什么?
这是我的Dockerfile:
# https://registry.hub.docker.com/u/dockerfile/nodejs/ (builds on ubuntu:14.04)
FROM dockerfile/nodejs
MAINTAINER My Name, me@email.com
ENV HOME /home/web
WORKDIR /home/web/site
RUN useradd web -d /home/web -s /bin/bash -m
RUN npm install -g grunt-cli
RUN npm install -g bower
RUN chown -R web:web /home/web
USER web
RUN git clone https://github.com/repo/site /home/web/site
RUN npm install
RUN bower install --config.interactive=false --allow-root
ENV NODE_ENV development
# Port 9000 for server
# Port 35729 for livereload
EXPOSE 9000 35729
CMD ["grunt"]
CMD grunt?
你的意思是放下["
和"]
?
CMD ["grunt"]
为CMD grunt
CMD ["grunt"]
使用另一个Shell执行命令,那么在该Shell中可能不会设置$ PATH。
CMD grunt
吗?还是可以尝试通过传递完整路径来执行grunt命令?