Merge pull request #3523 from MarcDiethelm/pr/dockerfile-file-option-example

Add an example how to specify a Dockerfile for deployment
This commit is contained in:
Jose Diaz-Gonzalez
2019-05-12 18:59:09 -04:00
committed by GitHub

View File

@@ -29,6 +29,12 @@ For users that require customization in the `build` phase, you may use build arg
dokku docker-options:add node-js-app build '--build-arg NODE_ENV=production'
```
The location of the `Dockerfile` may also be specified. If the location is changed, the repository **must also** have a `Dockerfile` in the root directory in order to trigger a dockerfile-based deploy.
```shell
dokku docker-options:add node-js-app build '--file Dockerfile.dokku'
```
Once set, the Dockerfile usage would be as follows:
```Dockerfile