gpt4 book ai didi

linux - MV : cannot stat 'coverage.txt' : No such file or directory

转载 作者:太空宇宙 更新时间:2023-11-04 05:39:42 25 4
gpt4 key购买 nike

我正在尝试在我的存储库中设置 Codecov。我正在尝试通过 docker 容器传递 Codecov 报告。

这是我的 Dockerfile

FROM markadams/chromium-xvfb-js:7
WORKDIR /usr/src/app
CMD npm install && \
node_modules/.bin/ng build && \
node_modules/.bin/ng test --watch=false && \
node_modules/.bin/ng lint && \
mkdir -p shared && \
mv coverage.txt shared

我得到的错误是这样的 -

mv: cannot stat 'coverage.txt': No such file or directory

您可以查看我的存储库 here

谢谢!

最佳答案

如果您希望构建目录中的文件存在于镜像(和容器)内,则需要首先将该文件复制到镜像中:

FROM markadams/chromium-xvfb-js:7
# add this next line
COPY . /usr/src/app
WORKDIR /usr/src/app
CMD npm install && \
node_modules/.bin/ng build && \
node_modules/.bin/ng test --watch=false && \
node_modules/.bin/ng lint

关于linux - MV : cannot stat 'coverage.txt' : No such file or directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43394103/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com