关于使用docker-compose安装nodejs开发环境遇到的一个问题

发布于 2022-09-06 01:37:26 字数 1338 浏览 30 评论 0

我新建了一个dockerfile内容如下

FROM node:latest
RUN mkdir -p /mnt/app
# Create app directory
WORKDIR /mnt/app

# Install app dependencies
COPY package.json /mnt/app
RUN npm install

# Bundle app source
COPY  . /mnt/app

EXPOSE 3000
CMD [ "npm", "start" ]

docker-compose文件内容如下

node:
        build:
            context: ./services/node/website
            dockerfile: Dockerfile
        ports:
          - "3000:3000"
        #volumes:
        #  - ./app:/mnt/app

文件结构是
clipboard.png

问题现在是不使用docker-compose数据映射,单纯使用dockerfile copy方法进去就可以跑起来node,但如果我使用数据映射

volumes:
  - ./app:/mnt/app

则就报错

报错信息如下:

npm info it worked if it ends with ok
npm info using npm@5.4.2
npm info using node@v8.7.0
npm ERR! path /mnt/app/package.json
npm ERR! code ENOENT
npm ERR! errno -2
npm ERR! syscall open
npm ERR! enoent ENOENT: no such file or directory, open '/mnt/app/package.json'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent 

npm ERR! A complete log of this run can be found in:
npm ERR!     /root/.npm/_logs/2017-10-20T03_08_13_487Z-debug.log

求大神看下

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文