Skip to content

Commit

Permalink
add docker dev container configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
DHrpcs3 committed Nov 17, 2024
1 parent 86942b3 commit b983ca6
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -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}
35 changes: 35 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -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 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
# Visual Studio Files
.vs/*
.vscode/*
!.vscode/extensions.json
*.ipch
*.vspx
*.psess
Expand Down
5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"ms-vscode-remote.vscode-remote-extensionpack"
]
}

0 comments on commit b983ca6

Please sign in to comment.