mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-20 05:22:03 +08:00
3a9999ce05
date: 2025-08-19T09:22:22 master commit: 1508b2a6e31204c2fb41dd023412c90808236940
13 lines
234 B
Docker
13 lines
234 B
Docker
FROM ghcr.io/commaai/openpilot-base:latest
|
|
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
ENV OPENPILOT_PATH=/home/batman/openpilot
|
|
|
|
RUN mkdir -p ${OPENPILOT_PATH}
|
|
WORKDIR ${OPENPILOT_PATH}
|
|
|
|
COPY . ${OPENPILOT_PATH}/
|
|
|
|
RUN scons --cache-readonly -j$(nproc)
|