mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2025-10-29 19:43:22 +00:00
* Add UID of user when building to avoid permission issue * Add way to change timezone too
32 lines
799 B
Docker
32 lines
799 B
Docker
FROM --platform=linux/amd64 ubuntu:20.04
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
ARG USERNAME=devuser
|
|
ARG UID=1000
|
|
ARG TZ="Etc/UTC"
|
|
|
|
RUN echo "$TZ" > /etc/timezone
|
|
|
|
RUN dpkg --add-architecture i386 \
|
|
&& apt-get update \
|
|
&& apt-get upgrade -y \
|
|
&& apt-get install -y \
|
|
wget git python3 python-is-python3 python3-pip \
|
|
libc6-i386 make \
|
|
build-essential cmake gcc-arm-none-eabi
|
|
|
|
RUN pip3 install pycryptodomex configobj toml fdt
|
|
|
|
RUN useradd -m -s /bin/bash -u "${UID}" ${USERNAME}
|
|
|
|
COPY build_target_platforms.sh /build_target_platforms.sh
|
|
RUN chmod 775 /build_target_platforms.sh
|
|
|
|
ENV OPENBK7231T_APP_NAME="OpenBK7231T_App"
|
|
|
|
RUN mkdir -p /${OpenBK7231T_App} && chown ${USERNAME} /${OpenBK7231T_App}
|
|
|
|
USER ${USERNAME}
|
|
|
|
CMD ["/build_target_platforms.sh"]
|