Add devcontainer

Signed-off-by: yubiuser <github@yubiuser.dev>
This commit is contained in:
yubiuser 2024-08-18 09:55:20 +02:00
parent 3649a5fe2e
commit 7fbfe8e325
No known key found for this signature in database
2 changed files with 28 additions and 0 deletions

12
.devcontainer/Dockerfile Normal file
View File

@ -0,0 +1,12 @@
# syntax=docker/dockerfile:1
ARG ubuntu_version=24.04
FROM ubuntu:${ubuntu_version}
RUN apt-get update && \
apt-get install -y \
build-essential \
ca-certificates \
cmake \
git \
nano\
openssh-server

View File

@ -0,0 +1,16 @@
{
"name": "Civetweb",
"dockerFile": "Dockerfile",
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cpptools",
"eamodio.gitlens"
]
}
},
"mounts": [
"type=bind,source=/home/${localEnv:USER}/.ssh,target=/root/.ssh,readonly"
]
}