1
0
mirror of https://github.com/falk-werner/webfuse synced 2026-03-02 03:40:24 +00:00

build and develop using docker

- add DevContainer
  note that integration tests will not run in devcontainer
- allow to build using docker buildx bake

Signed-off-by: Falk Werner <falk.werner@gmx.net>
This commit is contained in:
Falk Werner
2024-10-11 16:26:47 +02:00
committed by Falk Werner
parent 36ad419f6c
commit fdd8dbe51d
5 changed files with 94 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
{
"name": "webfuse",
"build": {
"dockerfile": "../Dockerfile",
"context": "..",
"target": "devcontainer"
},
"remoteUser": "user",
"mounts": [{
"source": "${localEnv:HOME}/.ssh",
"target": "/home/user/.ssh",
"type": "bind"
}],
"customizations": {
"vscode": {
"extensions": [],
"settings": {
"terminal.integrated.defaultProfile.linux": "bash"
}
}
}
}