标签: docker
我的docker映像名称是
simpleweb2
这是我的docker文件:
#base Image FROM node:alpine #install dependencies COPY ./ ./ RUN npm install #default command CMD ['npm', 'start']
构建并运行以下命令
docker run simpleweb2
我收到此错误
/bin/sh: [npm,: not found