1234567891011121314151617181920212223242526 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "type": "docker-build",
- "label": "docker-build",
- "platform": "python",
- "dockerBuild": {
- "tag": "crawlsse:latest",
- "dockerfile": "${workspaceFolder}/Dockerfile",
- "context": "${workspaceFolder}",
- "pull": true
- }
- },
- {
- "type": "docker-run",
- "label": "docker-run: debug",
- "dependsOn": [
- "docker-build"
- ],
- "python": {
- "file": "main.py"
- }
- }
- ]
- }
|