From 135b4b0f0901aad79d8a21792bedeaa2bfe7ca0c Mon Sep 17 00:00:00 2001 From: Cameron Clough Date: Sat, 1 Jun 2024 15:49:38 +0100 Subject: [PATCH] devcontainer: use bun (#44) devcontainer: bun install --- .devcontainer/devcontainer.json | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index a171bb1..f27d99b 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,7 +1,8 @@ { - "name": "flash.comma.ai", - - "image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye", - - "postCreateCommand": "pnpm install", + "name": "flash.comma.ai", + "image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye", + "features": { + "ghcr.io/shyim/devcontainers-features/bun:0": {} + }, + "postCreateCommand": "bun install" }