diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 590a23198..ab41d1bc7 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,8 +1,9 @@ FROM node:22-slim -# Match the build tooling used by the production Dockerfile so native +# Match the build tooling used by the production Dockerfile (keep this +# list and the --no-install-suggests flag in sync with it) so native # dependencies (e.g. Prisma) compile correctly inside the Dev Container -RUN apt-get update && apt-get install -y --no-install-recommends \ +RUN apt-get update && apt-get install -y --no-install-suggests \ g++ \ git \ make \