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

Latest commit

 

History

History

build_arguments

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

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.