Files
onepilot/Dockerfile.openpilot
T
Vehicle Researcher 9f648e0963 openpilot v0.10.1
2025-08-24 02:10:58 -07:00

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)