From c8624f4c549f3bcc8956e3b55a0310917ffe1ed7 Mon Sep 17 00:00:00 2001 From: Sekwah Date: Mon, 22 Jul 2024 09:11:01 +0000 Subject: [PATCH] chore: updating devcontainer --- .devcontainer/devcontainer.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ad113f05..707e34dc 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1 +1,5 @@ -{ "image": "ubuntu:22.04" } +{ + "name": "Pomatez Dev", + "image": "ubuntu:22.04", + "postCreateCommand": "apt-get update && apt-get install -y curl git && curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash && export NVM_DIR=\"$HOME/.nvm\" && [ -s \"$NVM_DIR/nvm.sh\" ] && \\. \"$NVM_DIR/nvm.sh\" && [ -s \"$NVM_DIR/bash_completion\" ] && \\. \"$NVM_DIR/bash_completion\"" +}