mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-08-21 09:13:46 +08:00
68af0c4a17
* ci: master > master-ci * disable reset and squash for master-tici * disable release drafter * docker img * temp builds * actual temp * new ref * Revert "actual temp" This reverts commit2e73befd17. * wrong name * Revert "wrong name" This reverts commit5efa687aaf. * Reapply "actual temp" This reverts commit75a9d986fd. * Revert "Reapply "actual temp"" This reverts commit1f77d902d4. * Reapply "wrong name" This reverts commited24def13c. * revert
13 lines
243 B
Docker
13 lines
243 B
Docker
FROM ghcr.io/sunnypilot/sunnypilot-tici-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)
|