panda/Dockerfile.panda

75 lines
2.1 KiB
Docker
Raw Normal View History

FROM ubuntu:20.04
2020-05-17 20:53:23 -06:00
ENV PYTHONUNBUFFERED 1
2020-05-19 13:50:32 -06:00
ENV PYTHONPATH /tmp/openpilot:$PYTHONPATH
2020-05-17 20:53:23 -06:00
ENV DEBIAN_FRONTEND=noninteractive
2020-05-17 20:53:23 -06:00
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
ca-certificates \
2020-05-17 20:53:23 -06:00
capnproto \
clang \
curl \
g++ \
gcc-arm-none-eabi libnewlib-arm-none-eabi \
git \
libarchive-dev \
libavformat-dev libavcodec-dev libavdevice-dev libavutil-dev libswscale-dev libavresample-dev libavfilter-dev \
libbz2-dev \
libcapnp-dev \
libcurl4-openssl-dev \
libffi-dev \
libtool \
libssl-dev \
libsqlite3-dev \
2020-05-17 20:53:23 -06:00
libusb-1.0-0 \
libzmq3-dev \
locales \
make \
pkg-config \
python \
python-dev \
unzip \
wget \
zlib1g-dev \
2020-05-19 13:50:32 -06:00
&& rm -rf /var/lib/apt/lists/*
2020-05-17 20:53:23 -06:00
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
RUN curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
ENV PATH="/root/.pyenv/bin:/root/.pyenv/shims:${PATH}"
COPY requirements.txt /tmp/
2021-03-11 14:47:40 -07:00
RUN pyenv install 3.8.5 && \
pyenv global 3.8.5 && \
2020-05-19 13:50:32 -06:00
pyenv rehash && \
pip install --no-cache-dir -r /tmp/requirements.txt
2020-05-17 20:53:23 -06:00
2020-06-07 22:42:23 -06:00
RUN cd /tmp && \
git clone https://github.com/danmar/cppcheck.git && \
cd cppcheck && \
git fetch && \
git checkout e46191e6e809272d8b34feca8999ee413f716b80 && \
FILESDIR=/usr/share/cppcheck make -j4 install
2020-05-19 13:50:32 -06:00
RUN cd /tmp && \
git clone https://github.com/commaai/openpilot.git tmppilot || true && \
2020-05-17 22:50:11 -06:00
cd /tmp/tmppilot && \
2021-03-14 15:23:01 -06:00
git fetch && \
git checkout 5463469f71e7861ccfbbd4d09b8e4ae56b8d3e45 && \
2020-05-17 20:53:23 -06:00
git submodule update --init cereal opendbc && \
2020-05-17 22:50:11 -06:00
mkdir /tmp/openpilot && \
cp -pR SConstruct site_scons/ tools/ selfdrive/ common/ cereal/ opendbc/ /tmp/openpilot && \
2020-05-17 22:50:11 -06:00
rm -rf /tmp/tmppilot
2020-05-17 20:53:23 -06:00
RUN cd /tmp/openpilot && \
pip install --no-cache-dir -r opendbc/requirements.txt && \
pip install --no-cache-dir --upgrade aenum lru-dict pycurl tenacity atomicwrites scons
2020-05-17 20:53:23 -06:00
COPY . /tmp/openpilot/panda
RUN rm -rf /tmp/openpilot/panda/.git