我在es6中创建了api。当我尝试停靠时,我收到以下错误 - >
System error: exec: "node --harmony": executable file not found in $PATH
这是我的dockerfile列表
FROM node:5.5
COPY . /src
RUN cd /src; npm install
EXPOSE 9095
WORKDIR /src
RUN pwd
CMD ["node --harmony", "cluster.js"]
答案 0 :(得分:4)
(注意:我不知道docker)
查看错误消息和声明命令的语法,似乎必须将每个命令行参数指定为单独的元素,因此您应该这样做
CMD ["node", "--harmony", "cluster.js"]