我正在使用Alpine-node开发NextJS应用程序。我正在尝试运行yarn install。我的控制台返回了我:
stat / bin / sh:没有这样的文件或目录”:未知
这是我的Dockerfile:
FROM mhart/alpine-node:latest
WORKDIR /app
COPY package.json /app
ENTRYPOINT ["/bin/sh"] // I have tried to modify the entrypoin in order to cure the problem
RUN yarn install
COPY . /app
RUN yarn build
CMD yarn start
出了什么问题?我不知道。
任何提示都会很棒,
谢谢。
答案 0 :(得分:1)
首先尝试-
$>docker run -it --rm node_alpine:latest
/ # hostname
75b6ddda492f
如果将外壳放入容器中,则图像也可以正常工作。 否则,基本映像(node_alpine:latest)会出现问题