Skip to content

Commit

Permalink
Merge pull request #191 from Automattic/fix/add-image-runner-2
Browse files Browse the repository at this point in the history
Run arbitrary docker images
  • Loading branch information
scinos authored Nov 12, 2020
2 parents 32278f0 + aa068ca commit bc953c7
Show file tree
Hide file tree
Showing 20 changed files with 557 additions and 196 deletions.
34 changes: 22 additions & 12 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,34 @@
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach",
"port": 9229
},
{
"type": "node",
"request": "launch",
"name": "Debug",
"program": "${workspaceRoot}/build/index.js",
"smartStep": true,
"program": "${workspaceFolder}/build/index.js",
"skipFiles": [
"<node_internals>/**"
],
"outFiles": [
"../dist/**/*.js"
"${workspaceFolder}/build/**/*.js",
"!**/node_modules/**"
],
"preLaunchTask": "npm: build-ts",
"protocol": "inspector"
"type": "pwa-node",
"outputCapture": "std"
},
{
"request": "launch",
"name": "Test",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"skipFiles": [
"<node_internals>/**"
],
"args": [
"--runInBand",
"${file}"
],
"type": "pwa-node",
}
]
}
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"@types/tar-fs": "^1.16.1",
"@types/useragent": "^2.1.1",
"bunyan": "^1.8.12",
"docker-parse-image": "^3.0.1",
"dockerode": "^3.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
Expand Down
Loading

0 comments on commit bc953c7

Please sign in to comment.