From e4eabb168768a915a08f6078e81ed5eaca7e1de8 Mon Sep 17 00:00:00 2001 From: David Carley Date: Sat, 3 Sep 2022 02:26:00 +0000 Subject: [PATCH] A couple tweaks to the devcontainer Dockerfile --- .devcontainer/Dockerfile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index f0c90e6..da270b7 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -7,9 +7,13 @@ FROM mcr.microsoft.com/vscode/devcontainers/base:${VARIANT} RUN apt update \ && apt upgrade -y \ && apt install -y \ - build-essential git wget binfmt-support qemu gcc-9 \ - parted gcc-avr avr-libc avrdude python3 python3-pip python3-tornado \ - inetutils-ping curl unzip python3-setuptools gcc-arm-linux-gnueabihf bc vim locate sudo \ + build-essential git wget binfmt-support qemu gcc-9 \ + parted gcc-avr avr-libc avrdude python3 python3-pip python3-tornado \ + inetutils-ping curl unzip python3-setuptools gcc-arm-linux-gnueabihf bc vim locate sudo \ && update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 9 \ + && /usr/bin/python3 -m pip install -U yapf \ && curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \ - && apt install -y nodejs + && apt install -y nodejs \ + && mkdir -p /root/.ssh \ + && echo "Host onefinity" > /root/.ssh/config \ + && echo "\tUser bbmc" >> /root/.ssh/config