Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 

26 rindas
483 B

  1. FROM amd64/ubuntu:groovy
  2. RUN apt update
  3. RUN apt install -y --no-install-recommends \
  4. git \
  5. wget \
  6. python \
  7. python3 \
  8. python3-pip \
  9. ubuntu-keyring \
  10. qemu-user-static \
  11. binfmt-support \
  12. debootstrap \
  13. coreutils \
  14. parted \
  15. gdisk \
  16. bzip2 \
  17. kpartx \
  18. lbzip2 \
  19. sudo \
  20. e2fsprogs
  21. RUN python3 -m pip install ansible
  22. ENTRYPOINT ["bash", "target/build.sh"]