mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 21:14:01 +08:00
* docker: sunnypilot images * update ref for now * update * actually nightly * rename * enable now * revert
13 lines
238 B
Docker
13 lines
238 B
Docker
FROM ghcr.io/sunnypilot/sunnypilot-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)
|