mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 13:33:59 +08:00
* fix sim devcontainer
* use host.docker.internal instead
* devcontainer supports jsonc
old-commit-hash: 1f8ceb4ca1
13 lines
509 B
Docker
13 lines
509 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
|
|
|
|
ENV CARLA_HOST="host.docker.internal" |