I'll experiment with -f, but it doesn't solve all my use cases (example: an Ember or Angular app served by nginx, so the nginx configuration files are stored with the Dockerfile, and the contents of the root are in ./dist or ./build). At any rate I don't see a way to use ...
@thaJeztahMm.. i think that's weird, cause i'm working like administrator user and just trying to deploy an Angular App using the Multi-Stage Build feature from Docker. I gonna need to get mor info on the internet about how to do it. If you got some info about it i'll be so ...
本节内容: Dockerfile介绍 Dockerfile指令简单介绍 示例1:构建Nginx镜像 示例2:构建一个Ruby运行环境 构建缓存 一、Dockerfile介绍 dockerfile是构建镜像的说明书。dockerfile提供了一种基于DSL语法的指令来构建镜像,通过代码化,镜像构建过程一目了然,我们能看出镜像构建的每一步都在干什么。 若要共享镜像,我们只需要...