From 18c3743b6b5646839fa1a40f9b3f081e5e2a8aad Mon Sep 17 00:00:00 2001 From: Lewis Nixon Date: Wed, 22 Jul 2026 20:19:57 +0100 Subject: [PATCH] Sync Dev Container prerequisites list with actual Dockerfile packages The docs listed g++, make, python3 as pre-installed tooling but omitted openssl and git, which .devcontainer/Dockerfile also installs. --- DEVELOPMENT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 7ec29f1c2..11182b64a 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -20,7 +20,7 @@ ### Dev Container -As an alternative to the manual _Setup_ above, [Visual Studio Code](https://code.visualstudio.com) users can develop inside a [Dev Container](https://containers.dev). It runs the application in a Docker container alongside [PostgreSQL](https://www.postgresql.org) and [Redis](https://redis.io), pre-installed with the required build tooling (Node.js 22, `g++`, `make`, `python3`). +As an alternative to the manual _Setup_ above, [Visual Studio Code](https://code.visualstudio.com) users can develop inside a [Dev Container](https://containers.dev). It runs the application in a Docker container alongside [PostgreSQL](https://www.postgresql.org) and [Redis](https://redis.io), pre-installed with the required build tooling (Node.js 22, `g++`, `git`, `make`, `openssl`, `python3`). #### Prerequisites