25 lines
669 B
JSON
25 lines
669 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build AsciiDoc PDF",
|
|
"type": "shell",
|
|
"command": "docker",
|
|
"args": [
|
|
"run",
|
|
"--rm", // autoremove after exit
|
|
"-v",
|
|
"${workspaceFolder}:/documents",
|
|
"-w",
|
|
"/documents",
|
|
"asciidoctor/docker-asciidoctor",
|
|
"asciidoctor-pdf",
|
|
"${relativeFile}"
|
|
],
|
|
"group": "build"
|
|
}
|
|
]
|
|
}
|