Add devcontainer
@@ -0,0 +1,13 @@
+# syntax=docker/dockerfile:1
+ARG ubuntu_version=24.04
+
+FROM ubuntu:${ubuntu_version}
+RUN apt-get update && \
+ apt-get install --no-install-recommends -y \
+ build-essential \
+ ca-certificates \
+ cmake \
+ clang \
+ git \
+ nano\
+ openssh-server
@@ -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"