Skip to content
Snippets Groups Projects
tasks.json 917 B
{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "buildx build",
            "command": "docker",
            "args": [
                "buildx",
                "build",
                "--build-arg",
                "FLUTTER_VERSION=${input:flutterVersion}",
                "--platform",
                "linux/arm64",
                "--tag",
                "andrijoos/flutter:${input:flutterVersion}-dev",
                "--load",
                ".",
            ],
        },
    ],
    "inputs": [
        {
            "id": "flutterVersion",
            "type": "pickString",
            "description": "Choose flutter version",
            "options": [
                "3.27.1",
                "3.27.0",
                "3.24.5",
            ],
        },
    ],
}