2021-02-08 11:53:47 +01:00
|
|
|
FROM ghcr.io/commaai/openpilot-base:latest
|
2020-08-23 18:18:19 -07:00
|
|
|
|
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
|
|
2023-05-03 16:01:01 -07:00
|
|
|
ENV OPENPILOT_PATH /home/batman/openpilot
|
2021-01-14 21:31:51 -08:00
|
|
|
ENV PYTHONPATH ${OPENPILOT_PATH}:${PYTHONPATH}
|
2020-08-23 18:18:19 -07:00
|
|
|
|
2021-01-14 21:31:51 -08:00
|
|
|
RUN mkdir -p ${OPENPILOT_PATH}
|
|
|
|
|
WORKDIR ${OPENPILOT_PATH}
|
2020-08-23 18:18:19 -07:00
|
|
|
|
2024-06-18 17:28:52 -07:00
|
|
|
COPY . ${OPENPILOT_PATH}/
|
2020-12-31 14:57:01 -08:00
|
|
|
|
2022-06-12 18:00:00 -07:00
|
|
|
RUN scons --cache-readonly -j$(nproc)
|