devcontainer w/ sqlite3

This commit is contained in:
Dylan Knutson
2025-08-29 10:21:39 -07:00
parent d8e6c4ef3e
commit 83cdbb770d
2 changed files with 4 additions and 6 deletions

View File

@@ -3,4 +3,4 @@ FROM mcr.microsoft.com/devcontainers/rust:1-1-bookworm
RUN sudo apt update && \ RUN sudo apt update && \
sudo apt install -qqy --no-install-recommends --no-install-suggests sqlite3 && \ sudo apt install -qqy --no-install-recommends --no-install-suggests sqlite3 && \
apt-get clean && \ apt-get clean && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*

View File

@@ -3,11 +3,9 @@
{ {
"name": "Rust", "name": "Rust",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": { "build": {
"build": { "dockerfile": "Dockerfile.devcontainer",
"dockerfile": "Dockerfile.devcontainer", "context": "."
"context": "."
}
}, },
"features": { "features": {
"ghcr.io/braun-daniel/devcontainer-features/fzf:1": {}, "ghcr.io/braun-daniel/devcontainer-features/fzf:1": {},