mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-24 01:23:54 +08:00
* devcontainer user * cleanup permissions * remove that * remove that since it's not used * clean that up after merge * build base image first * remove the pull * build base image * ensure we can pip install * build base image as batman user * add user uid * add temporary comment about chown instruction
10 lines
411 B
Docker
10 lines
411 B
Docker
FROM ghcr.io/commaai/openpilot-base:latest
|
|
|
|
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" |