Remove renovate workflow and integrate docker build #10

Merged
official-Cromatin merged 7 commits from feat-vscode-tasks into main 2025-12-08 14:44:05 +01:00
2 changed files with 16 additions and 1 deletions
Showing only changes of commit 70363033c1 - Show all commits
+1 -1
View File
@@ -5,7 +5,7 @@ pastebin.txt
.DS_Store
test*.py
docker-*
.vscode
.vscode/settings.json
# Byte-compiled / optimized / DLL files
+15
View File
@@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Docker: Build Image",
"type": "docker-build",
"platform": "python",
"dockerBuild": {
"context": "${workspaceFolder}",
"dockerfile": "${workspaceFolder}/Dockerfile",
"tag": "post-it:dev"
}
}
]
}