feat: Add devcontainer (#1248)

Signed-off-by: Praateek <praateekm@gmail.com>
This commit is contained in:
Praateek Mahajan
2025-06-16 11:11:50 -07:00
committed by GitHub
parent cf9b821b19
commit ba5ffbbe2e
2 changed files with 38 additions and 0 deletions

10
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
# Use Rust base image
FROM mcr.microsoft.com/devcontainers/rust:1
# Install additional dependencies
RUN apt-get update && apt-get install -y \
build-essential \
libdbus-1-dev \
gnome-keyring \
libxcb1-dev \
&& apt-get clean