github.com/qlik-oss/gopherciser@v0.18.6/docs/buildingdockerimage.md (about)

     1  # Building a Docker image
     2  
     3  To create a Docker image from this package, run the following Docker command from within the unzipped Gopherciser package:
     4  ```bash
     5  docker build . -t qlik/gopherciser:$(cat version)
     6  ```
     7  
     8  The Prometheus metrics port can be overridden with the `PORT` argument:
     9  
    10  ```bash
    11  docker build . -t qlik/gopherciser:$(cat version) --build-arg PORT=9191
    12  ```