add deploy devcontainer + upgrade woodpecker version

This commit is contained in:
2025-01-28 22:36:02 +00:00
parent 26e5259048
commit 062398ce28
3 changed files with 18 additions and 2 deletions

6
.devcontainer/Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM debian:12
RUN apt update &&\
apt install ca-certificates curl git -y &&\
curl -fsSL https://get.docker.com -o get-docker.sh &&\
sh get-docker.sh

View File

@ -0,0 +1,10 @@
{
"workspaceFolder": "/workspace",
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind,Z",
"mounts": [
"source=${localEnv:HOME}/.ssh,target=/home/vscode/.ssh,type=bind,readonly"
],
"build": {
"dockerfile": "Dockerfile"
}
}