mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-04-06 06:43:53 +08:00
* all * ota * all manif * ab * remove these * hash * userdata * ontheflyisthebest * on the fly * dont need * remove * handle fill * comment * all * all img * rename * read * sparse image * tool * no root * userdata * userdata * need this unfort * fix * fix * nop * remove * nop * this too * ota check * better for push * fix * again * good now
39 lines
974 B
Ruby
39 lines
974 B
Ruby
# check=error=true
|
|
|
|
FROM ubuntu:20.04
|
|
|
|
ARG UNAME
|
|
ARG UID
|
|
ARG GID
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
python2 \
|
|
build-essential \
|
|
libssl-dev \
|
|
bc \
|
|
python-is-python2 \
|
|
openssl \
|
|
ccache \
|
|
libcap2-bin \
|
|
android-sdk-libsparse-utils \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN if [ ${UID:-0} -ne 0 ] && [ ${GID:-0} -ne 0 ]; then \
|
|
userdel -r `getent passwd ${UID} | cut -d : -f 1` > /dev/null 2>&1; \
|
|
groupdel -f `getent group ${GID} | cut -d : -f 1` > /dev/null 2>&1; \
|
|
groupadd -g ${GID} -o ${UNAME} && \
|
|
useradd -u $UID -g $GID ${UNAME} \
|
|
;fi
|
|
|
|
RUN CCACHE_PATH=$(which ccache) && \
|
|
ln -s $CCACHE_PATH /usr/local/bin/gcc && \
|
|
ln -s $CCACHE_PATH /usr/local/bin/g++ && \
|
|
ln -s $CCACHE_PATH /usr/local/bin/cc && \
|
|
ln -s $CCACHE_PATH /usr/local/bin/c++ && \
|
|
ln -s $CCACHE_PATH /usr/local/bin/clang
|
|
|
|
ENTRYPOINT ["tail", "-f", "/dev/null"]
|