From f1a8303db7aecd5cfb3b721d3fab1cbf8e6906e8 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Thu, 30 Apr 2026 11:12:52 +0000 Subject: [PATCH] chore(dev): add markdownlint-cli2 (and nodejs) in dev container --- .devcontainer/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 5aa8f60d..b2509eac 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,2 +1,3 @@ FROM ghcr.io/qdm12/godevcontainer:v0.21-alpine RUN apk add wireguard-tools htop openssl tcpdump iptables +RUN apk add nodejs npm && npm install markdownlint-cli2 --global && apk del npm