From 66e5531c2509c9df927efa05748bc786053d56d2 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Mon, 18 Sep 2023 19:32:27 -0700 Subject: [PATCH] add tmux and vim config to dev container (#29967) --- .devcontainer/Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index e72704bfd0..08d3abaca9 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -2,5 +2,10 @@ FROM ghcr.io/commaai/openpilot-base:latest # remove gitconfig if exists, since its gonna be replaced by host one RUN rm -f /root/.gitconfig -RUN apt update && apt install -y vim net-tools usbutils htop ripgrep + +RUN apt update && apt install -y vim net-tools usbutils htop ripgrep tmux RUN pip install ipython jupyter jupyterlab + +RUN cd $HOME && \ + curl -O https://raw.githubusercontent.com/commaai/agnos-builder/master/userspace/home/.tmux.conf && \ + curl -O https://github.com/commaai/agnos-builder/blob/master/userspace/home/.vimrc