add docker dev container configuration

This commit is contained in:
DH 2024-11-17 19:03:16 +00:00
parent 86942b3ba8
commit b983ca6aa5
4 changed files with 56 additions and 0 deletions

15
.devcontainer/Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM ubuntu:rolling
ARG USER
RUN apt update
RUN apt install -y sudo wget git pkgconf
RUN apt install -y build-essential cmake libunwind-dev libglfw3-dev libvulkan-dev libsox-dev git libasound2-dev nasm g++-14
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
RUN echo "deb http://apt.llvm.org/oracular/ llvm-toolchain-oracular main" | tee -a /etc/apt/sources.list
RUN apt update
RUN apt install -y clangd
RUN deluser ubuntu || echo
RUN useradd -m ${USER}
RUN echo ${USER} ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/${USER} \
&& chmod 0440 /etc/sudoers.d/${USER}

View File

@ -0,0 +1,35 @@
{
"build": {
"dockerfile": "Dockerfile",
"args": {
"USER": "${localEnv:USER}"
}
},
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
],
"updateRemoteUserUID": true,
"remoteUser": "${localEnv:USER}",
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cpptools",
"llvm-vs-code-extensions.vscode-clangd",
"streetsidesoftware.code-spell-checker",
"eamodio.gitlens",
"dtoplak.vscode-glsllint",
"slevesque.shader"
],
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/bin/bash"
}
}
}
}
}
}

1
.gitignore vendored
View File

@ -34,6 +34,7 @@
# Visual Studio Files
.vs/*
.vscode/*
!.vscode/extensions.json
*.ipch
*.vspx
*.psess

5
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"recommendations": [
"ms-vscode-remote.vscode-remote-extensionpack"
]
}