From 39ac128c1ecda429fb4faea6e28837ba5b834b2a Mon Sep 17 00:00:00 2001 From: Ludea Date: Wed, 16 Oct 2024 09:21:01 +0000 Subject: [PATCH] fix: install prerequis app into container --- .devcontainer/Dockerfile | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 6410e325..10255beb 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1 +1,15 @@ -FROM ghcr.io/lapce/lapdev-devcontainer-vnc \ No newline at end of file +FROM ghcr.io/lapce/lapdev-devcontainer-vnc + +RUN apt-get update && apt install -y --no-install-recommends \ + libwebkit2gtk-4.1-dev \ + build-essential \ + curl \ + wget \ + file \ + libxdo-dev \ + libssl-dev \ + libayatana-appindicator3-dev \ + librsvg2-dev \ + nodejs + +RUN corepack enable pnpm \ No newline at end of file