Dockerfile 425 B

1234567891011121314151617
  1. FROM ubuntu
  2. ENV DEBIAN_FRONTEND noninteractive
  3. ENV DEBCONF_NONINTERACTIVE_SEEN true
  4. RUN echo "UTC" > /etc/timezone
  5. RUN apt -y update
  6. RUN apt -y install gcc make automake bison flex bc pkg-config wget git ncurses-dev gcc-arm-linux-gnueabi libssl-dev cpio rsync
  7. COPY GetPatchAndCompileKernel.sh /GetPatchAndCompileKernel.sh
  8. COPY docker/build.sh /entrypoint.sh
  9. VOLUME ["/git", "/tmp/RockMyy-Build"]
  10. CMD ["/entrypoint.sh"]