amazon-web-services – COPY没有指定源文件

前端之家收集整理的这篇文章主要介绍了amazon-web-services – COPY没有指定源文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我试图将docker容器部署到AWS CodeBuild,并且它继续执行以下步骤:

  1. COPY dist/* /var/www/html/

我确定那个目录里面有东西,只是为了确保我运行命令ls dist:

  1. Step 4 : RUN ls dist
  2. ---> Running in cc6a985f54dd
  3. 1.1.329fd43c10e3d0fc91b9.js
  4. 3.3.d0a0148e036318c95bfe.js
  5. 4.4.d85fbfa6409009fb6e4c.js
  6. app.a6626f87bbfc6e67618d.js
  7. app.cd527cf8dea96798229c62fb7d983606.css
  8. favicon.ico
  9. humans.txt
  10. index.html
  11. robots.txt
  12. vendor.d81f28030613dd8760c0.js

我的dockerfile:

  1. FROM jaronoff/listmkr-prod
  2. # Remove the default Nginx index.html
  3. RUN rm -rf /var/www/html/index.Nginx-debian.html
  4. RUN npm run deploy:prod
  5. # Copy the contents of the dist directory over to the Nginx web root
  6. RUN ls dist
  7. COPY dist/* /var/www/html/
  8. # Expose the public http port
  9. EXPOSE 80
  10. # Start server
  11. CMD ["Nginx","-g","daemon off;"]
最佳答案
Dockerfile COPY命令将文件从构建“上下文”复制到您的图像中.构建上下文是您在构建命令结束时传递的文件夹.例如.在docker build -t myimage:latest.命令,.是你的背景.要使用COPY命令,需要存在“dist / *”.

您的RUN ls dist命令列出了您正在构建的图像内的目录.如果要将文件从图像中的一个位置复制到另一个位置,您可以:

  1. RUN cp -a dist/* /var/www/html/

猜你在找的Docker相关文章