Skip to content
This repository has been archived by the owner on Dec 15, 2020. It is now read-only.

Latest commit

 

History

History
19 lines (16 loc) · 475 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 475 Bytes

Build Arguments

Some Dockerfiles require you to set build arguments. You may set them in your job definition like this:

{
    "version": 1,
    "jobs":[{
        "type": "docker",
        ...
        "build_arguments": {
            "ARG1": "some value",
            "SOME_OTHER_ATH": "some other value"
        }
    }]

See also the documentation for build arguments.