From a35ac898325753e1e679116f7d9b6d40b28b5a6c Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 15 Aug 2024 21:11:44 +0000 Subject: [PATCH] feat: install sqlite3 in devcontainer image, install handbrake in separate layer --- .devcontainer/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 9d07aa8..5566333 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -2,4 +2,5 @@ FROM mcr.microsoft.com/vscode/devcontainers/base:bookworm # Install dev dependencies RUN apt update -RUN apt install -y git nodejs npm handbrake-cli \ No newline at end of file +RUN apt install -y git nodejs npm sqlite3 +RUN apt install -y handbrake-cli \ No newline at end of file