From 31ef6865d85709e1b370bd9ce915962e4ba42194 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Mon, 6 May 2024 08:46:22 +0000 Subject: [PATCH] refactor: :technologist: Add cloc to devcontainer --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 5be8e353..e047a55b 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,7 +1,7 @@ # Bun doesn't run well on Musl but this seems to work FROM oven/bun:1.1.7-alpine as base -RUN apk add --no-cache libstdc++ git bash curl openssh +RUN apk add --no-cache libstdc++ git bash curl openssh cloc # Switch to Bash by editing /etc/passwd RUN sed -i -e 's|/bin/ash|/bin/bash|g' /etc/passwd