mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 22:23:56 +08:00
* Revert "revert tg calib and opencl cleanup (#37113)"
This reverts commit 51312afd3d.
* power draw is a lil higher
* just don't miss a cycle
* fix warp targets
* fix tinygrad dep
45 lines
1.4 KiB
Docker
45 lines
1.4 KiB
Docker
FROM ubuntu:24.04
|
|
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends sudo tzdata locales ssh pulseaudio xvfb x11-xserver-utils gnome-screenshot python3-tk python3-dev && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && locale-gen
|
|
ENV LANG=en_US.UTF-8
|
|
ENV LANGUAGE=en_US:en
|
|
ENV LC_ALL=en_US.UTF-8
|
|
|
|
COPY tools/install_ubuntu_dependencies.sh /tmp/tools/
|
|
RUN /tmp/tools/install_ubuntu_dependencies.sh && \
|
|
rm -rf /var/lib/apt/lists/* /tmp/* && \
|
|
cd /usr/lib/gcc/arm-none-eabi/* && \
|
|
rm -rf arm/ thumb/nofp thumb/v6* thumb/v8* thumb/v7+fp thumb/v7-r+fp.sp
|
|
|
|
ENV NVIDIA_VISIBLE_DEVICES=all
|
|
ENV NVIDIA_DRIVER_CAPABILITIES=graphics,utility,compute
|
|
ENV QTWEBENGINE_DISABLE_SANDBOX=1
|
|
|
|
RUN dbus-uuidgen > /etc/machine-id
|
|
|
|
ARG USER=batman
|
|
ARG USER_UID=1001
|
|
RUN useradd -m -s /bin/bash -u $USER_UID $USER
|
|
RUN usermod -aG sudo $USER
|
|
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
|
|
USER $USER
|
|
|
|
COPY --chown=$USER pyproject.toml uv.lock /home/$USER
|
|
COPY --chown=$USER tools/install_python_dependencies.sh /home/$USER/tools/
|
|
|
|
ENV VIRTUAL_ENV=/home/$USER/.venv
|
|
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
|
RUN cd /home/$USER && \
|
|
tools/install_python_dependencies.sh && \
|
|
rm -rf tools/ pyproject.toml uv.lock .cache
|
|
|
|
USER root
|
|
RUN sudo git config --global --add safe.directory /tmp/openpilot
|