mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-08-06 19:45:43 +08:00
10f451cf35
version: sunnypilot v2026.001.000 (feature-branch)
date: 2026-03-01T23:04:06
master commit: ea4e165020
15 lines
340 B
Docker
15 lines
340 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}/
|
|
|
|
ENV UV_BIN="/home/batman/.local/bin/"
|
|
ENV PATH="$UV_BIN:$PATH"
|
|
RUN UV_PROJECT_ENVIRONMENT=$VIRTUAL_ENV uv run scons --cache-readonly -j$(nproc)
|