Add docker-build task and update .gitignore

This commit is contained in:
2025-09-28 18:26:48 +02:00
parent baf774f4b0
commit 70363033c1
2 changed files with 16 additions and 1 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ pastebin.txt
.DS_Store .DS_Store
test*.py test*.py
docker-* docker-*
.vscode .vscode/settings.json
# Byte-compiled / optimized / DLL files # 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"
}
}
]
}