mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-28 01:52:06 +08:00
f43247fa48
old-commit-hash: 66e5531c2509c9df927efa05748bc786053d56d2
12 lines
471 B
Docker
12 lines
471 B
Docker
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 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
|