我正在尝试将我的Symfony项目放在docker上。 您可以在这里https://github.com/Guilhemfuel/yousign
看到我的项目所以现在我试图将Node放在docker上以启动Yarn encore,但这不起作用。
docker-compose.yml:
node:
build: .docker/node
volumes:
- .:/var/www/yousign
command: bash -c "yarn && yarn dev"
Dockerfile:
FROM node:10
RUN apt-get update && \
apt-get install -y \
curl \
apt-transport-https
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
RUN apt-get update && apt-get install yarn
WORKDIR /var/www/yousign
使用此命令时的错误: docker run yousign_node yarn run encore生产
error Couldn't find a package.json file in "/var/www/yousign"
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
我不明白为什么找不到package.json,因为此文件位于我的项目中。 而且我在Windows上