Add docker-build task and update .gitignore
This commit is contained in:
+1
-1
@@ -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
|
||||||
|
|||||||
Vendored
+15
@@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user