modernize dev container
Some checks are pending
Formatting check / formatting-check (push) Waiting to run
Build RPCSX / build-linux (push) Waiting to run
Build RPCSX / build-android (arm64-v8a, armv8-a) (push) Waiting to run
Build RPCSX / build-android (arm64-v8a, armv8.1-a) (push) Waiting to run
Build RPCSX / build-android (arm64-v8a, armv8.2-a) (push) Waiting to run
Build RPCSX / build-android (arm64-v8a, armv8.4-a) (push) Waiting to run
Build RPCSX / build-android (arm64-v8a, armv8.5-a) (push) Waiting to run
Build RPCSX / build-android (arm64-v8a, armv9-a) (push) Waiting to run
Build RPCSX / build-android (arm64-v8a, armv9.1-a) (push) Waiting to run
Build RPCSX / build-android (x86_64, x86-64) (push) Waiting to run

This commit is contained in:
DH 2025-12-05 23:06:58 +03:00
parent 5b3bc0e97a
commit a1c4170048
2 changed files with 10 additions and 7 deletions

View file

@ -2,13 +2,15 @@ FROM --platform=linux/amd64 ubuntu:rolling
ARG USER
RUN wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key | tee /etc/apt/trusted.gpg.d/apt.llvm.org.asc
RUN echo "Types: deb \n\
URIs: http://apt.llvm.org/questing/ \n\
Suites: llvm-toolchain-questing \n\
Components: main \n\
Signed-By: /etc/apt/trusted.gpg.d/apt.llvm.org.asc\n" > /etc/apt/sources.list.d/llvm.sources
RUN cat /etc/apt/sources.list.d/llvm.sources
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 apt install -y sudo wget git pkgconf clangd build-essential cmake libunwind-dev libglfw3-dev libvulkan-dev libsox-dev git libasound2-dev nasm g++-14
RUN deluser ubuntu || echo
RUN useradd -m ${USER}
RUN echo ${USER} ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/${USER} \

View file

@ -9,7 +9,8 @@
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined",
"--platform", "linux/amd64"
"--platform", "linux/amd64",
// "--gpus", "all"
],
"updateRemoteUserUID": true,
"remoteUser": "${localEnv:USER}",